Esempio n. 1
0
        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)));
        }
Esempio n. 2
0
 public void Initialize()
 {
     AddContextMenu();
     EmployeeOptions.AddTabDialog();
 }