Changeset 3333
- Timestamp:
- 04/13/10 17:41:40 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.Designer.cs
r3328 r3333 92 92 this.dataGridView.Location = new System.Drawing.Point(0, 52); 93 93 this.dataGridView.Name = "dataGridView"; 94 this.dataGridView.RowHeadersWidth = 160; 94 95 this.dataGridView.Size = new System.Drawing.Size(424, 352); 95 96 this.dataGridView.TabIndex = 4; … … 166 167 private System.Windows.Forms.Label rowsLabel; 167 168 private System.Windows.Forms.TextBox rowsTextBox; 168 private System.Windows.Forms.DataGridView dataGridView;169 169 private System.Windows.Forms.ErrorProvider errorProvider; 170 170 private System.Windows.Forms.TextBox columnsTextBox; … … 172 172 private System.Windows.Forms.ContextMenuStrip contextMenu; 173 173 private System.Windows.Forms.ToolStripMenuItem ShowHideColumns; 174 protected System.Windows.Forms.DataGridView dataGridView; 174 175 175 176 } -
trunk/sources/HeuristicLab.Optimization/3.3/RunCollection.cs
r3329 r3333 197 197 198 198 public event EventHandler SortableViewChanged; 199 protected virtual void OnSortableViewChanged() { 200 EventHandler handler = SortableViewChanged; 201 if (handler != null) 202 handler(this, EventArgs.Empty); 203 } 204 199 205 public bool Validate(string value, out string errorMessage) { throw new NotSupportedException(); } 200 206 public bool SetValue(string value, int rowIndex, int columnIndex) { throw new NotSupportedException(); }
Note: See TracChangeset
for help on using the changeset viewer.