private static void TabHandler(object sender, Autodesk.AutoCAD.ApplicationServices.TabbedDialogEventArgs e)
 {
     EmployeeOptions EmployeeOptionsPage = new EmployeeOptions();
     e.AddTab("Acme Employee Options",
         new TabbedDialogExtension(
         EmployeeOptionsPage,
         new TabbedDialogAction(EmployeeOptionsPage.OnOk)));
 }
Exemple #2
0
 private static void TabHandler(object sender, Autodesk.AutoCAD.ApplicationServices.TabbedDialogEventArgs e)
 {
     MyOptionPage MyOpPage = new MyOptionPage();
     TabbedDialogExtension tabbedDialog = new TabbedDialogExtension(MyOpPage,new TabbedDialogAction(MyOpPage.OnOk));
     e.AddTab("�ҵ�����ҳ",tabbedDialog);
 }