EditorEventsDialogCommand.vb
' Copyright 2012 ESRI ' ' All rights reserved under the copyright laws of the United States ' and applicable international laws, treaties, and conventions. ' ' You may freely redistribute and use this sample code, with or ' without modification, provided you include the original copyright ' notice and use restrictions. ' ' See the use restrictions. ' Imports System Imports System.Runtime.InteropServices Imports System.Drawing Imports ESRI.ArcGIS.ADF.BaseClasses Imports ESRI.ArcGIS.Framework Imports ESRI.ArcGIS.esriSystem Public Class EditorEventsDialogCommand Inherits ESRI.ArcGIS.Desktop.AddIns.Button Private m_dockableWindow As ESRI.ArcGIS.Framework.IDockableWindow Public Sub New() Dim windowID As UID = New UIDClass windowID.Value = "ESRI_Employee_Editing_EditEventListener_EditorEventsDialog" m_dockableWindow = My.ArcMap.DockableWindowManager.GetDockableWindow(windowID) End Sub Protected Overrides Sub OnClick() If m_dockableWindow Is Nothing Then Return End If m_dockableWindow.Show((Not m_dockableWindow.IsVisible())) Checked = m_dockableWindow.IsVisible() End Sub Protected Overrides Sub OnUpdate() Enabled = m_dockableWindow IsNot Nothing Checked = m_dockableWindow IsNot Nothing And m_dockableWindow.IsVisible() End Sub End Class