public override void Execute(object parameter)
        {
            if (layoutPickerControl == null)
            {
                layoutPickerControl = new LayoutPickerControl();
                layoutPickerControl.Completed += LayoutPickerControl_Completed;
                layoutPickerControl.Cancelled += LayoutPickerControl_Cancelled;
            }

            BuilderApplication.Instance.ShowWindow(ESRI.ArcGIS.Mapping.Builder.Resources.Strings.ChangeLayout, 
                layoutPickerControl, false, null, LayoutPicker_WindowClosed);
        }
Exemplo n.º 2
0
        public override void Execute(object parameter)
        {
            if (layoutPickerControl == null)
            {
                layoutPickerControl            = new LayoutPickerControl();
                layoutPickerControl.Completed += LayoutPickerControl_Completed;
                layoutPickerControl.Cancelled += LayoutPickerControl_Cancelled;
            }

            BuilderApplication.Instance.ShowWindow(ESRI.ArcGIS.Mapping.Builder.Resources.Strings.ChangeLayout,
                                                   layoutPickerControl, false, null, LayoutPicker_WindowClosed);
        }