Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10371 was 10317, checked in by sbreuer, 10 years ago
  • make textboxes readonly and resize themm
  • redraw datagrid after sorting
File size: 3.3 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.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
33      this.rowsTextBox.Enabled = false;
34      this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
35      this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
36      this.rowsTextBox.ReadOnly = true;
37      this.rowsTextBox.Size = new System.Drawing.Size(71, 20);
38      //
39      // columnsTextBox
40      //
41      this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
42      this.columnsTextBox.Enabled = false;
43      this.columnsTextBox.ReadOnly = true;
44      this.columnsTextBox.Size = new System.Drawing.Size(71, 20);
45      //
46      // statisticsTextBox
47      //
48      this.statisticsTextBox.Size = new System.Drawing.Size(522, 13);
49      //
50      // btnApplySort
51      //
52      this.btnApplySort.Location = new System.Drawing.Point(241, 19);
53      this.btnApplySort.Name = "btnApplySort";
54      this.btnApplySort.Size = new System.Drawing.Size(75, 23);
55      this.btnApplySort.TabIndex = 7;
56      this.btnApplySort.Text = "Apply Sort";
57      this.btnApplySort.UseVisualStyleBackColor = true;
58      this.btnApplySort.Click += new System.EventHandler(this.btnApplySort_Click);
59      //
60      // DataGridContentView
61      //
62      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
63      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
64      this.Controls.Add(this.btnApplySort);
65      this.Name = "DataGridContentView";
66      this.Size = new System.Drawing.Size(528, 404);
67      this.Controls.SetChildIndex(this.statisticsTextBox, 0);
68      this.Controls.SetChildIndex(this.rowsLabel, 0);
69      this.Controls.SetChildIndex(this.columnsLabel, 0);
70      this.Controls.SetChildIndex(this.rowsTextBox, 0);
71      this.Controls.SetChildIndex(this.columnsTextBox, 0);
72      this.Controls.SetChildIndex(this.btnApplySort, 0);
73      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
74      this.ResumeLayout(false);
75      this.PerformLayout();
76
77    }
78
79    #endregion
80
81    private System.Windows.Forms.Button btnApplySort;
82  }
83}
Note: See TracBrowser for help on using the repository browser.