Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3333 for trunk


Ignore:
Timestamp:
04/13/10 17:41:40 (14 years ago)
Author:
mkommend
Message:

changed RowHeaderWidth in StringConvertibleMatrixView and removed warning from RunCollection (ticket #968)

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.Designer.cs

    r3328 r3333  
    9292      this.dataGridView.Location = new System.Drawing.Point(0, 52);
    9393      this.dataGridView.Name = "dataGridView";
     94      this.dataGridView.RowHeadersWidth = 160;
    9495      this.dataGridView.Size = new System.Drawing.Size(424, 352);
    9596      this.dataGridView.TabIndex = 4;
     
    166167    private System.Windows.Forms.Label rowsLabel;
    167168    private System.Windows.Forms.TextBox rowsTextBox;
    168     private System.Windows.Forms.DataGridView dataGridView;
    169169    private System.Windows.Forms.ErrorProvider errorProvider;
    170170    private System.Windows.Forms.TextBox columnsTextBox;
     
    172172    private System.Windows.Forms.ContextMenuStrip contextMenu;
    173173    private System.Windows.Forms.ToolStripMenuItem ShowHideColumns;
     174    protected System.Windows.Forms.DataGridView dataGridView;
    174175
    175176  }
  • trunk/sources/HeuristicLab.Optimization/3.3/RunCollection.cs

    r3329 r3333  
    197197
    198198    public event EventHandler SortableViewChanged;
     199    protected virtual void OnSortableViewChanged() {
     200      EventHandler handler = SortableViewChanged;
     201      if (handler != null)
     202        handler(this, EventArgs.Empty);
     203    }
     204
    199205    public bool Validate(string value, out string errorMessage) { throw new NotSupportedException(); }
    200206    public bool SetValue(string value, int rowIndex, int columnIndex) { throw new NotSupportedException(); }
Note: See TracChangeset for help on using the changeset viewer.