コード例 #1
0
ファイル: UserControlForm.cs プロジェクト: Dekken/buildatron
        public UserControlForm()
        {
            InitializeComponent();

            this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.closeForm);
            this.Controls.Add(right = new RightUserControl(this));
            this.Controls.Add(left  = new LeftUserControl(this));
            this.Controls.Add(bottom  = new BottomUserControl(this));

            left.InitialiseNodes();
            ((this).Parent) = ((this).Parent);
            userControl.services.master.configuration.MasterConfigurationValidationService.getInstance().validateMasterConfigurationFile();

            this.processQueueTimer   = new System.Timers.Timer(1000);
            this.processQueueTimer.Elapsed += new ElapsedEventHandler(this.handleProcessQueues);
            this.processQueueTimer.Enabled = true;
        }
コード例 #2
0
ファイル: ControlTreeNode.cs プロジェクト: Dekken/buildatron
 public ControlTreeNode(RightUserControl control)
 {
     this.control = control;
 }
コード例 #3
0
ファイル: UserControlForm.cs プロジェクト: Dekken/buildatron
 public void setRightControl(RightUserControl right)
 {
     Point l = this.right.Location;
     this.Controls.Remove(this.right);
     this.right = right;
     this.Controls.Add(this.right);
     this.right.Location = l;
 }