private void InitializeComponent() { this.pickButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.conditionGrid = new System.Windows.Forms.DataGridView(); this.okButton = new System.Windows.Forms.Button(); this.panel1 = new System.Windows.Forms.Panel(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.label1 = new System.Windows.Forms.Label(); this.testButton = new System.Windows.Forms.Button(); this.clearButton = new System.Windows.Forms.Button(); this.conditionEnabledColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.conditionNameColumn = new Roro.Activities.LabelColumn(); this.conditionValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); ((System.ComponentModel.ISupportInitialize)(this.conditionGrid)).BeginInit(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // pickButton // this.pickButton.Location = new System.Drawing.Point(12, 12); this.pickButton.Name = "pickButton"; this.pickButton.Size = new System.Drawing.Size(75, 23); this.pickButton.TabIndex = 0; this.pickButton.TabStop = false; this.pickButton.Text = "Pick"; this.pickButton.UseVisualStyleBackColor = true; this.pickButton.Click += new System.EventHandler(this.PickButton_Click); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(447, 12); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 1; this.cancelButton.TabStop = false; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; // // conditionGrid // this.conditionGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.conditionGrid.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells; this.conditionGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(225)))), ((int)(((byte)(230))))); this.conditionGrid.BorderStyle = System.Windows.Forms.BorderStyle.None; this.conditionGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.conditionGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.conditionEnabledColumn, this.conditionNameColumn, this.conditionValueColumn }); this.conditionGrid.Dock = System.Windows.Forms.DockStyle.Fill; this.conditionGrid.EnableHeadersVisualStyles = false; this.conditionGrid.Location = new System.Drawing.Point(0, 0); this.conditionGrid.Name = "conditionGrid"; this.conditionGrid.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; this.conditionGrid.Size = new System.Drawing.Size(510, 220); this.conditionGrid.TabIndex = 2; this.conditionGrid.TabStop = false; // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Location = new System.Drawing.Point(366, 12); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 3; this.okButton.TabStop = false; this.okButton.Text = "OK"; this.okButton.UseVisualStyleBackColor = true; // // panel1 // this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(235)))), ((int)(((byte)(240))))); this.panel1.Controls.Add(this.splitContainer1); this.panel1.Controls.Add(this.testButton); this.panel1.Controls.Add(this.clearButton); this.panel1.Controls.Add(this.pickButton); this.panel1.Controls.Add(this.okButton); this.panel1.Controls.Add(this.cancelButton); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(534, 311); this.panel1.TabIndex = 4; // // splitContainer1 // this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; this.splitContainer1.IsSplitterFixed = true; this.splitContainer1.Location = new System.Drawing.Point(12, 41); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.conditionGrid); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.label1); this.splitContainer1.Panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.splitContainer1_Panel2_Paint); this.splitContainer1.Size = new System.Drawing.Size(510, 258); this.splitContainer1.SplitterDistance = 220; this.splitContainer1.TabIndex = 6; this.splitContainer1.TabStop = false; // // label1 // this.label1.BackColor = System.Drawing.Color.Yellow; this.label1.Dock = System.Windows.Forms.DockStyle.Fill; this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(510, 34); this.label1.TabIndex = 0; this.label1.Text = "Press CTRL key to pick the highlighted element"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // testButton // this.testButton.Location = new System.Drawing.Point(93, 12); this.testButton.Name = "testButton"; this.testButton.Size = new System.Drawing.Size(75, 23); this.testButton.TabIndex = 5; this.testButton.TabStop = false; this.testButton.Text = "Test"; this.testButton.UseVisualStyleBackColor = true; this.testButton.Click += new System.EventHandler(this.TestButton_Click); // // clearButton // this.clearButton.Location = new System.Drawing.Point(174, 12); this.clearButton.Name = "clearButton"; this.clearButton.Size = new System.Drawing.Size(75, 23); this.clearButton.TabIndex = 4; this.clearButton.TabStop = false; this.clearButton.Text = "Clear"; this.clearButton.UseVisualStyleBackColor = true; this.clearButton.Click += new System.EventHandler(this.ClearButton_Click); // // conditionEnabledColumn // this.conditionEnabledColumn.DataPropertyName = "Use"; this.conditionEnabledColumn.FillWeight = 10F; this.conditionEnabledColumn.HeaderText = "Use"; this.conditionEnabledColumn.Name = "conditionEnabledColumn"; this.conditionEnabledColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.conditionEnabledColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; // // conditionNameColumn // this.conditionNameColumn.DataPropertyName = "Name"; this.conditionNameColumn.FillWeight = 30F; this.conditionNameColumn.HeaderText = "Name"; this.conditionNameColumn.Name = "conditionNameColumn"; this.conditionNameColumn.ReadOnly = true; this.conditionNameColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True; // // conditionValueColumn // this.conditionValueColumn.DataPropertyName = "Value"; this.conditionValueColumn.FillWeight = 60F; this.conditionValueColumn.HeaderText = "Value"; this.conditionValueColumn.Name = "conditionValueColumn"; this.conditionValueColumn.ReadOnly = true; // // ElementPickerForm // this.AcceptButton = this.okButton; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(534, 311); this.Controls.Add(this.panel1); this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Name = "ElementPickerForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Element Picker"; this.TopMost = true; this.Load += new System.EventHandler(this.ElementPickerForm_Load); ((System.ComponentModel.ISupportInitialize)(this.conditionGrid)).EndInit(); this.panel1.ResumeLayout(false); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.ResumeLayout(false); }
private void InitializeComponent() { this.panel1 = new System.Windows.Forms.Panel(); this.nameTextBox = new System.Windows.Forms.TextBox(); this.typeLabel = new System.Windows.Forms.Label(); this.typeComboBox = new System.Windows.Forms.ComboBox(); this.cancelButton = new System.Windows.Forms.Button(); this.okButton = new System.Windows.Forms.Button(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.inputsTab = new System.Windows.Forms.TabPage(); this.inputGrid = new System.Windows.Forms.DataGridView(); this.outputsTab = new System.Windows.Forms.TabPage(); this.outputGrid = new System.Windows.Forms.DataGridView(); this.valuesTab = new System.Windows.Forms.TabPage(); this.currentValueLabel = new System.Windows.Forms.Label(); this.initialValueLabel = new System.Windows.Forms.Label(); this.initialValueTextBox = new System.Windows.Forms.TextBox(); this.currentValueTextBox = new System.Windows.Forms.TextBox(); this.nameLabel = new System.Windows.Forms.Label(); this.inputNameColumn = new Roro.Activities.LabelColumn(); this.inputTypeColumn = new Roro.Activities.DataTypeColumn(); this.inputValueColumn = new Roro.Activities.GhostTextBoxColumn(); this.outputNameColumn = new Roro.Activities.LabelColumn(); this.outputTypeColumn = new Roro.Activities.DataTypeColumn(); this.outputValueColumn = new Roro.Activities.VariableColumn(); this.panel1.SuspendLayout(); this.tabControl1.SuspendLayout(); this.inputsTab.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.inputGrid)).BeginInit(); this.outputsTab.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.outputGrid)).BeginInit(); this.valuesTab.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(235)))), ((int)(((byte)(240))))); this.panel1.Controls.Add(this.nameTextBox); this.panel1.Controls.Add(this.typeLabel); this.panel1.Controls.Add(this.typeComboBox); this.panel1.Controls.Add(this.cancelButton); this.panel1.Controls.Add(this.okButton); this.panel1.Controls.Add(this.tabControl1); this.panel1.Controls.Add(this.nameLabel); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(584, 361); this.panel1.TabIndex = 0; // // nameTextBox // this.nameTextBox.AcceptsReturn = true; this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.nameTextBox.Location = new System.Drawing.Point(12, 33); this.nameTextBox.Name = "nameTextBox"; this.nameTextBox.Size = new System.Drawing.Size(338, 23); this.nameTextBox.TabIndex = 0; // // typeLabel // this.typeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.typeLabel.AutoSize = true; this.typeLabel.Location = new System.Drawing.Point(353, 12); this.typeLabel.Margin = new System.Windows.Forms.Padding(3); this.typeLabel.Name = "typeLabel"; this.typeLabel.Size = new System.Drawing.Size(32, 15); this.typeLabel.TabIndex = 5; this.typeLabel.Text = "Type"; this.typeLabel.Visible = false; // // typeComboBox // this.typeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.typeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.typeComboBox.FormattingEnabled = true; this.typeComboBox.Location = new System.Drawing.Point(356, 33); this.typeComboBox.Name = "typeComboBox"; this.typeComboBox.Size = new System.Drawing.Size(216, 23); this.typeComboBox.TabIndex = 4; this.typeComboBox.TabStop = false; this.typeComboBox.Visible = false; // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.Location = new System.Drawing.Point(497, 326); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 4; this.cancelButton.TabStop = false; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.CancelButton_Click); // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System; this.okButton.Location = new System.Drawing.Point(416, 326); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 3; this.okButton.TabStop = false; this.okButton.Text = "OK"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.OkButton_Click); // // tabControl1 // this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tabControl1.Controls.Add(this.inputsTab); this.tabControl1.Controls.Add(this.outputsTab); this.tabControl1.Controls.Add(this.valuesTab); this.tabControl1.Location = new System.Drawing.Point(12, 62); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(560, 258); this.tabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; this.tabControl1.TabIndex = 2; this.tabControl1.TabStop = false; // // inputsTab // this.inputsTab.BackColor = System.Drawing.Color.White; this.inputsTab.Controls.Add(this.inputGrid); this.inputsTab.Location = new System.Drawing.Point(4, 24); this.inputsTab.Name = "inputsTab"; this.inputsTab.Padding = new System.Windows.Forms.Padding(3); this.inputsTab.Size = new System.Drawing.Size(552, 230); this.inputsTab.TabIndex = 0; this.inputsTab.Text = "Inputs"; // // inputGrid // this.inputGrid.AllowUserToAddRows = false; this.inputGrid.AllowUserToDeleteRows = false; this.inputGrid.AllowUserToResizeRows = false; this.inputGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.inputGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.inputGrid.BackgroundColor = System.Drawing.Color.White; this.inputGrid.BorderStyle = System.Windows.Forms.BorderStyle.None; this.inputGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.inputGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.inputNameColumn, this.inputTypeColumn, this.inputValueColumn }); this.inputGrid.EnableHeadersVisualStyles = false; this.inputGrid.Location = new System.Drawing.Point(6, 6); this.inputGrid.Name = "inputGrid"; this.inputGrid.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; this.inputGrid.Size = new System.Drawing.Size(540, 212); this.inputGrid.TabIndex = 0; this.inputGrid.TabStop = false; // // outputsTab // this.outputsTab.BackColor = System.Drawing.Color.White; this.outputsTab.Controls.Add(this.outputGrid); this.outputsTab.Location = new System.Drawing.Point(4, 24); this.outputsTab.Name = "outputsTab"; this.outputsTab.Padding = new System.Windows.Forms.Padding(3); this.outputsTab.Size = new System.Drawing.Size(552, 230); this.outputsTab.TabIndex = 1; this.outputsTab.Text = "Outputs"; // // outputGrid // this.outputGrid.AllowUserToAddRows = false; this.outputGrid.AllowUserToDeleteRows = false; this.outputGrid.AllowUserToResizeRows = false; this.outputGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.outputGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.outputGrid.BackgroundColor = System.Drawing.Color.White; this.outputGrid.BorderStyle = System.Windows.Forms.BorderStyle.None; this.outputGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.outputGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.outputNameColumn, this.outputTypeColumn, this.outputValueColumn }); this.outputGrid.EnableHeadersVisualStyles = false; this.outputGrid.Location = new System.Drawing.Point(6, 6); this.outputGrid.Name = "outputGrid"; this.outputGrid.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; this.outputGrid.Size = new System.Drawing.Size(540, 212); this.outputGrid.TabIndex = 1; this.outputGrid.TabStop = false; // // valuesTab // this.valuesTab.BackColor = System.Drawing.Color.White; this.valuesTab.Controls.Add(this.currentValueLabel); this.valuesTab.Controls.Add(this.initialValueLabel); this.valuesTab.Controls.Add(this.initialValueTextBox); this.valuesTab.Controls.Add(this.currentValueTextBox); this.valuesTab.Location = new System.Drawing.Point(4, 22); this.valuesTab.Name = "valuesTab"; this.valuesTab.Padding = new System.Windows.Forms.Padding(3); this.valuesTab.Size = new System.Drawing.Size(552, 232); this.valuesTab.TabIndex = 2; this.valuesTab.Text = "Values"; // // currentValueLabel // this.currentValueLabel.AutoSize = true; this.currentValueLabel.Location = new System.Drawing.Point(6, 66); this.currentValueLabel.Margin = new System.Windows.Forms.Padding(3); this.currentValueLabel.Name = "currentValueLabel"; this.currentValueLabel.Size = new System.Drawing.Size(78, 15); this.currentValueLabel.TabIndex = 3; this.currentValueLabel.Text = "Current Value"; // // initialValueLabel // this.initialValueLabel.AutoSize = true; this.initialValueLabel.Location = new System.Drawing.Point(6, 11); this.initialValueLabel.Margin = new System.Windows.Forms.Padding(3); this.initialValueLabel.Name = "initialValueLabel"; this.initialValueLabel.Size = new System.Drawing.Size(67, 15); this.initialValueLabel.TabIndex = 2; this.initialValueLabel.Text = "Initial Value"; // // initialValueTextBox // this.initialValueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.initialValueTextBox.Location = new System.Drawing.Point(6, 32); this.initialValueTextBox.Name = "initialValueTextBox"; this.initialValueTextBox.Size = new System.Drawing.Size(328, 23); this.initialValueTextBox.TabIndex = 0; this.initialValueTextBox.TabStop = false; // // currentValueTextBox // this.currentValueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.currentValueTextBox.Location = new System.Drawing.Point(6, 87); this.currentValueTextBox.Name = "currentValueTextBox"; this.currentValueTextBox.ReadOnly = true; this.currentValueTextBox.Size = new System.Drawing.Size(328, 23); this.currentValueTextBox.TabIndex = 1; this.currentValueTextBox.TabStop = false; // // nameLabel // this.nameLabel.AutoSize = true; this.nameLabel.Location = new System.Drawing.Point(12, 12); this.nameLabel.Margin = new System.Windows.Forms.Padding(3); this.nameLabel.Name = "nameLabel"; this.nameLabel.Size = new System.Drawing.Size(39, 15); this.nameLabel.TabIndex = 0; this.nameLabel.Text = "Name"; // // inputNameColumn // this.inputNameColumn.FillWeight = 35F; this.inputNameColumn.HeaderText = "Name"; this.inputNameColumn.Name = "inputNameColumn"; this.inputNameColumn.ReadOnly = true; this.inputNameColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.inputNameColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; // // inputTypeColumn // this.inputTypeColumn.DisplayMember = "Name"; this.inputTypeColumn.DisplayStyleForCurrentCellOnly = true; this.inputTypeColumn.FillWeight = 15F; this.inputTypeColumn.HeaderText = "Type"; this.inputTypeColumn.Name = "inputTypeColumn"; this.inputTypeColumn.ReadOnly = true; this.inputTypeColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.inputTypeColumn.ValueMember = "Id"; // // inputValueColumn // this.inputValueColumn.FillWeight = 50F; this.inputValueColumn.HeaderText = "Value"; this.inputValueColumn.Name = "inputValueColumn"; this.inputValueColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; // // outputNameColumn // this.outputNameColumn.FillWeight = 35F; this.outputNameColumn.HeaderText = "Name"; this.outputNameColumn.Name = "outputNameColumn"; this.outputNameColumn.ReadOnly = true; this.outputNameColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.outputNameColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; // // outputTypeColumn // this.outputTypeColumn.DisplayMember = "Name"; this.outputTypeColumn.DisplayStyleForCurrentCellOnly = true; this.outputTypeColumn.FillWeight = 15F; this.outputTypeColumn.HeaderText = "Type"; this.outputTypeColumn.Name = "outputTypeColumn"; this.outputTypeColumn.ReadOnly = true; this.outputTypeColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.outputTypeColumn.ValueMember = "Id"; // // outputValueColumn // this.outputValueColumn.DisplayStyleForCurrentCellOnly = true; this.outputValueColumn.FillWeight = 50F; this.outputValueColumn.HeaderText = "Variable"; this.outputValueColumn.Name = "outputValueColumn"; this.outputValueColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True; // // NodeForm // this.ClientSize = new System.Drawing.Size(584, 361); this.Controls.Add(this.panel1); this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Name = "NodeForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Activity Properties"; this.Load += new System.EventHandler(this.NodeForm_Load); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.tabControl1.ResumeLayout(false); this.inputsTab.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.inputGrid)).EndInit(); this.outputsTab.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.outputGrid)).EndInit(); this.valuesTab.ResumeLayout(false); this.valuesTab.PerformLayout(); this.ResumeLayout(false); }