ArcMapAddinVisibility.ViewModels.LOSBaseViewModel.OnEditPropertiesDialogCommand C# (CSharp) 메소드

OnEditPropertiesDialogCommand() 개인적인 메소드

Handler for opening the edit properties dialog
private OnEditPropertiesDialogCommand ( object obj ) : void
obj object
리턴 void
        private void OnEditPropertiesDialogCommand(object obj)
        {
            var dlg = new EditPropertiesView();

            dlg.DataContext = new EditPropertiesViewModel();

            dlg.ShowDialog();
        }