Beispiel #1
0
        static void Main()
        {
            #if DEBUG
            DebugMethod();
            #endif

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            CtrlCVMasterForm form = new CtrlCVMasterForm();
            int x = Screen.PrimaryScreen.Bounds.Width - form.Width;
            int y = Screen.PrimaryScreen.Bounds.Height - form.Height;
            form.Location = new Point(x, y - 40);

            Application.Run(form);
        }
Beispiel #2
0
 public SettingForm(CtrlCVMasterForm form)
 {
     InitializeComponent();
     this.SetData();
     this.ctrlCVMasterForm = form;
 }
Beispiel #3
0
 public SettingForm(CtrlCVMasterForm form)
 {
     InitializeComponent();
     this.SetData();
     this.ctrlCVMasterForm = form;
 }