/// <summary> /// 生成非模态定制对话框 /// </summary> public void CreateCustomizeDialog() { //定义事件接口变量 ICustomizeDialogEvents_Event pCustomizeDialogEvent = m_CustomizeDialog as ICustomizeDialogEvents_Event; //为当前事件实例化(打开对话框事件) startDialogE = new ICustomizeDialogEvents_OnStartDialogEventHandler(OnStartDialogHandler); //利用该事件接口对象实现打开对话框事件 pCustomizeDialogEvent.OnStartDialog += startDialogE; pCustomizeDialogEvent.OnCloseDialog += OnCloseDialogHandler; m_CustomizeDialog.DialogTitle = "定制对话框"; m_CustomizeDialog.SetDoubleClickDestination(this.view.axToolbarControl1); }
private void CreateCustomizeDialog() { // Set the customize dialog box events. ICustomizeDialogEvents_Event pCustomizeDialogEvent = m_CustomizeDialog as ICustomizeDialogEvents_Event; startDialogE = new ICustomizeDialogEvents_OnStartDialogEventHandler(OnStartDialogHandler); pCustomizeDialogEvent.OnStartDialog += startDialogE; closeDialogE = new ICustomizeDialogEvents_OnCloseDialogEventHandler(OnCloseDialogHandler); pCustomizeDialogEvent.OnCloseDialog += closeDialogE; // Set the title. m_CustomizeDialog.DialogTitle = "定制工具条"; // Set the ToolbarControl that new items will be added to. m_CustomizeDialog.SetDoubleClickDestination(axToolbarControl1); }