Changeset 5998
- Timestamp:
- 04/10/11 03:07:32 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Data.Views/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleValueView.Designer.cs
r5908 r5998 59 59 // valueTextBox 60 60 // 61 this.valueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 61 this.valueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 62 62 | System.Windows.Forms.AnchorStyles.Right))); 63 63 this.valueTextBox.Location = new System.Drawing.Point(17, 0); 64 64 this.valueTextBox.Name = "valueTextBox"; 65 65 this.valueTextBox.Size = new System.Drawing.Size(135, 20); 66 this.valueTextBox.TabIndex = 1;66 this.valueTextBox.TabIndex = 2; 67 67 this.valueTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.valueTextBox_KeyDown); 68 68 this.valueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.valueTextBox_Validating); … … 80 80 this.valueLabel.Name = "valueLabel"; 81 81 this.valueLabel.Size = new System.Drawing.Size(37, 13); 82 this.valueLabel.TabIndex = 0;82 this.valueLabel.TabIndex = 1; 83 83 this.valueLabel.Text = "&Value:"; 84 84 // … … 101 101 this.splitContainer.SplitterDistance = 41; 102 102 this.splitContainer.SplitterWidth = 1; 103 this.splitContainer.TabIndex = 2; 103 this.splitContainer.TabIndex = 0; 104 this.splitContainer.TabStop = false; 104 105 // 105 106 // StringConvertibleValueView -
trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleValueView.cs
r5908 r5998 91 91 if (e.KeyCode == Keys.Escape) { 92 92 valueTextBox.Text = Content.GetValue(); 93 valueLabel. Focus(); // select label to validate data93 valueLabel.Select(); // select label to validate data 94 94 } 95 95 }
Note: See TracChangeset
for help on using the changeset viewer.