示例#1
0
        public BasicWizard()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            this.SuspendLayout();
            this.logFilterTreeView = new LogFilterTreeView();
            this.logFilterTreeView.Location = new System.Drawing.Point(8, 26);
            this.logFilterTreeView.Size = new System.Drawing.Size(332, 218);
            this.stepThreePanel.Controls.AddRange(new System.Windows.Forms.Control[] { this.logFilterTreeView });
            this.ResumeLayout(false);

            currentStepNumber = 1;
            stepOnePanel.Left = StepPanelLocationX;
            stepOnePanel.Top = StepPanelLocationY;
            stepOnePanel.Width = StepPanelWidth;
            stepOnePanel.Height = StepPanelHeight;
            stepOnePanel.Visible = true;

            pidSorter = new ProcessListItemSorter(0);
            processSorter = new ProcessListItemSorter(1);

            this.lv_ProcessListBox.ListViewItemSorter = pidSorter;
        }
示例#2
0
        public BasicWizard()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            this.SuspendLayout();
            this.logFilterTreeView          = new LogFilterTreeView();
            this.logFilterTreeView.Location = new System.Drawing.Point(8, 26);
            this.logFilterTreeView.Size     = new System.Drawing.Size(332, 218);
            this.stepThreePanel.Controls.AddRange(new System.Windows.Forms.Control[] { this.logFilterTreeView });
            this.ResumeLayout(false);

            currentStepNumber    = 1;
            stepOnePanel.Left    = StepPanelLocationX;
            stepOnePanel.Top     = StepPanelLocationY;
            stepOnePanel.Width   = StepPanelWidth;
            stepOnePanel.Height  = StepPanelHeight;
            stepOnePanel.Visible = true;

            pidSorter     = new ProcessListItemSorter(0);
            processSorter = new ProcessListItemSorter(1);

            this.lv_ProcessListBox.ListViewItemSorter = pidSorter;
        }
示例#3
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(LogFilterDialog));
            this.logFilterOKButton     = new System.Windows.Forms.Button();
            this.logFilterCancelButton = new System.Windows.Forms.Button();
            this.logFilterTreeView     = new LogFilterTreeView();
            this.SuspendLayout();

            //
            // logFilterTreeView
            //
            this.logFilterTreeView.Location = new System.Drawing.Point(8, 8);
            this.logFilterTreeView.TabIndex = 2;

            //
            // logFilterOKButton
            //
            this.logFilterOKButton.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.logFilterOKButton.Location     = new System.Drawing.Point(135, 376);
            this.logFilterOKButton.Name         = "logFilterOKButton";
            this.logFilterOKButton.TabIndex     = 0;
            this.logFilterOKButton.Text         = "OK";
            this.logFilterOKButton.Click       += new System.EventHandler(this.logFilterOKButton_Click);
            //
            // logFilterCancelButton
            //
            this.logFilterCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.logFilterCancelButton.Location     = new System.Drawing.Point(231, 376);
            this.logFilterCancelButton.Name         = "logFilterCancelButton";
            this.logFilterCancelButton.TabIndex     = 1;
            this.logFilterCancelButton.Text         = "Cancel";
            this.logFilterCancelButton.Click       += new System.EventHandler(this.logFilterCancelButton_Click);
            //
            // LogFilterDialog
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(440, 414);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                this.logFilterTreeView,
                this.logFilterCancelButton,
                this.logFilterOKButton
            });
            this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name          = "LogFilterDialog";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "Choose Functions To Display In Logs";
            this.Load         += new System.EventHandler(this.LogFilterDialog_Load);
            this.ResumeLayout(false);
        }
示例#4
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(LogFilterDialog));
            this.logFilterOKButton = new System.Windows.Forms.Button();
            this.logFilterCancelButton = new System.Windows.Forms.Button();
            this.logFilterTreeView = new LogFilterTreeView();
            this.SuspendLayout();

            //
            // logFilterTreeView
            //
            this.logFilterTreeView.Location = new System.Drawing.Point(8, 8);
            this.logFilterTreeView.TabIndex = 2;

            //
            // logFilterOKButton
            //
            this.logFilterOKButton.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.logFilterOKButton.Location = new System.Drawing.Point(135, 376);
            this.logFilterOKButton.Name = "logFilterOKButton";
            this.logFilterOKButton.TabIndex = 0;
            this.logFilterOKButton.Text = "OK";
            this.logFilterOKButton.Click += new System.EventHandler(this.logFilterOKButton_Click);
            //
            // logFilterCancelButton
            //
            this.logFilterCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.logFilterCancelButton.Location = new System.Drawing.Point(231, 376);
            this.logFilterCancelButton.Name = "logFilterCancelButton";
            this.logFilterCancelButton.TabIndex = 1;
            this.logFilterCancelButton.Text = "Cancel";
            this.logFilterCancelButton.Click += new System.EventHandler(this.logFilterCancelButton_Click);
            //
            // LogFilterDialog
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(440, 414);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                          this.logFilterTreeView,
                                                                          this.logFilterCancelButton,
                                                                          this.logFilterOKButton});
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "LogFilterDialog";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Choose Functions To Display In Logs";
            this.Load += new System.EventHandler(this.LogFilterDialog_Load);
            this.ResumeLayout(false);
        }
示例#5
0
        public Wizard()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            this.SuspendLayout();
            this.logFilterTreeView          = new LogFilterTreeView();
            this.logFilterTreeView.Location = new System.Drawing.Point(16, 370);
            this.logFilterTreeView.Size     = new System.Drawing.Size(456, 263);
            this.Controls.AddRange(new System.Windows.Forms.Control[] { this.logFilterTreeView });
            this.ResumeLayout(false);

            switchModes = false;

            pidSorter     = new ProcessListItemSorter(0);
            processSorter = new ProcessListItemSorter(1);

            this.lv_ProcessListBox.ListViewItemSorter = pidSorter;
        }
示例#6
0
文件: Wizard.cs 项目: uvbs/Holodeck
        public Wizard()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            this.SuspendLayout();
            this.logFilterTreeView = new LogFilterTreeView();
            this.logFilterTreeView.Location = new System.Drawing.Point(16, 370);
            this.logFilterTreeView.Size = new System.Drawing.Size(456, 263);
            this.Controls.AddRange(new System.Windows.Forms.Control[] { this.logFilterTreeView });
            this.ResumeLayout(false);

            switchModes = false;

            pidSorter = new ProcessListItemSorter(0);
            processSorter = new ProcessListItemSorter(1);

            this.lv_ProcessListBox.ListViewItemSorter = pidSorter;
        }