Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataGridContentView.Designer.cs @ 10253

Last change on this file since 10253 was 10253, checked in by sbreuer, 11 years ago
  • added apply sorting button to datagridcontentview with click handler
  • modified sorting
File size: 2.9 KB
Line 
1namespace HeuristicLab.DataPreprocessing {
2  partial class DataGridContentView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.btnApplySort = new System.Windows.Forms.Button();
27      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
28      this.SuspendLayout();
29      //
30      // rowsTextBox
31      //
32      this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
33      this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
34      this.rowsTextBox.ReadOnly = true;
35      this.rowsTextBox.Size = new System.Drawing.Size(296, 20);
36      //
37      // columnsTextBox
38      //
39      this.columnsTextBox.ReadOnly = true;
40      this.columnsTextBox.Size = new System.Drawing.Size(296, 20);
41      //
42      // statisticsTextBox
43      //
44      this.statisticsTextBox.Size = new System.Drawing.Size(522, 13);
45      //
46      // btnApplySort
47      //
48      this.btnApplySort.Location = new System.Drawing.Point(398, 18);
49      this.btnApplySort.Name = "btnApplySort";
50      this.btnApplySort.Size = new System.Drawing.Size(75, 23);
51      this.btnApplySort.TabIndex = 7;
52      this.btnApplySort.Text = "Apply Sort";
53      this.btnApplySort.UseVisualStyleBackColor = true;
54      this.btnApplySort.Click += new System.EventHandler(this.btnApplySort_Click);
55      //
56      // DataGridContentView
57      //
58      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
59      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
60      this.Controls.Add(this.btnApplySort);
61      this.Name = "DataGridContentView";
62      this.Size = new System.Drawing.Size(528, 404);
63      this.Controls.SetChildIndex(this.statisticsTextBox, 0);
64      this.Controls.SetChildIndex(this.rowsLabel, 0);
65      this.Controls.SetChildIndex(this.columnsLabel, 0);
66      this.Controls.SetChildIndex(this.rowsTextBox, 0);
67      this.Controls.SetChildIndex(this.columnsTextBox, 0);
68      this.Controls.SetChildIndex(this.btnApplySort, 0);
69      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
70      this.ResumeLayout(false);
71      this.PerformLayout();
72
73    }
74
75    #endregion
76
77    private System.Windows.Forms.Button btnApplySort;
78  }
79}
Note: See TracBrowser for help on using the repository browser.