Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/02/10 15:30:42 (14 years ago)
Author:
mkommend
Message:

Added StatusStrip in StringConvertibleMatrixView to diplay statistical information (ticket #1253).

File:
1 edited

Legend:

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

    r4477 r4709  
    5454      this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
    5555      this.ShowHideColumns = new System.Windows.Forms.ToolStripMenuItem();
     56      this.statusStrip = new System.Windows.Forms.StatusStrip();
     57      this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
    5658      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
    5759      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5860      this.contextMenu.SuspendLayout();
     61      this.statusStrip.SuspendLayout();
    5962      this.SuspendLayout();
    6063      //
     
    9396      this.dataGridView.Name = "dataGridView";
    9497      this.dataGridView.RowHeadersWidth = 160;
    95       this.dataGridView.Size = new System.Drawing.Size(424, 352);
     98      this.dataGridView.Size = new System.Drawing.Size(424, 327);
    9699      this.dataGridView.TabIndex = 4;
    97100      this.dataGridView.VirtualMode = true;
     
    102105      this.dataGridView.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_ColumnHeaderMouseClick);
    103106      this.dataGridView.Scroll += new System.Windows.Forms.ScrollEventHandler(this.dataGridView_Scroll);
     107      this.dataGridView.SelectionChanged += new System.EventHandler(this.dataGridView_SelectionChanged);
    104108      this.dataGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView_KeyDown);
    105       this.dataGridView.MouseClick += new System.Windows.Forms.MouseEventHandler(dataGridView_MouseClick);
     109      this.dataGridView.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dataGridView_MouseClick);
    106110      this.dataGridView.Resize += new System.EventHandler(this.dataGridView_Resize);
    107111      //
     
    146150      this.ShowHideColumns.Click += new System.EventHandler(this.ShowHideColumns_Click);
    147151      //
     152      // statusStrip1
     153      //
     154      this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     155            this.toolStripStatusLabel});
     156      this.statusStrip.Location = new System.Drawing.Point(0, 382);
     157      this.statusStrip.Name = "statusStrip1";
     158      this.statusStrip.Size = new System.Drawing.Size(424, 22);
     159      this.statusStrip.TabIndex = 5;
     160      this.statusStrip.Text = "statusStrip1";
     161      //
     162      // toolStripStatusLabel
     163      //
     164      this.toolStripStatusLabel.Name = "toolStripStatusLabel";
     165      this.toolStripStatusLabel.Size = new System.Drawing.Size(378, 17);
     166      this.toolStripStatusLabel.Spring = true;
     167      //
    148168      // StringConvertibleMatrixView
    149169      //
    150170      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    151171      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     172      this.Controls.Add(this.statusStrip);
    152173      this.Controls.Add(this.dataGridView);
    153174      this.Controls.Add(this.columnsTextBox);
     
    160181      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    161182      this.contextMenu.ResumeLayout(false);
     183      this.statusStrip.ResumeLayout(false);
     184      this.statusStrip.PerformLayout();
    162185      this.ResumeLayout(false);
    163186      this.PerformLayout();
     
    174197    protected System.Windows.Forms.ToolStripMenuItem ShowHideColumns;
    175198    protected System.Windows.Forms.DataGridView dataGridView;
     199    private System.Windows.Forms.StatusStrip statusStrip;
     200    private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
    176201
    177202  }
Note: See TracChangeset for help on using the changeset viewer.