- Timestamp:
- 08/09/10 15:34:47 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data.Views/3.3/ColumnsVisibilityDialog.Designer.cs
r3742 r4178 46 46 private void InitializeComponent() { 47 47 this.checkedListBox = new System.Windows.Forms.CheckedListBox(); 48 this.btnShowAll = new System.Windows.Forms.Button(); 49 this.btnHideAll = new System.Windows.Forms.Button(); 48 50 this.SuspendLayout(); 49 51 // … … 57 59 this.checkedListBox.Location = new System.Drawing.Point(12, 12); 58 60 this.checkedListBox.Name = "checkedListBox"; 59 this.checkedListBox.Size = new System.Drawing.Size( 171, 244);61 this.checkedListBox.Size = new System.Drawing.Size(309, 289); 60 62 this.checkedListBox.TabIndex = 0; 61 63 this.checkedListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox_ItemCheck); 64 // 65 // btnShowAll 66 // 67 this.btnShowAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 68 this.btnShowAll.Location = new System.Drawing.Point(12, 315); 69 this.btnShowAll.Name = "btnShowAll"; 70 this.btnShowAll.Size = new System.Drawing.Size(75, 23); 71 this.btnShowAll.TabIndex = 1; 72 this.btnShowAll.Text = "Show all"; 73 this.btnShowAll.UseVisualStyleBackColor = true; 74 this.btnShowAll.Click += new System.EventHandler(this.btnShowAll_Click); 75 // 76 // btnHideAll 77 // 78 this.btnHideAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 79 this.btnHideAll.Location = new System.Drawing.Point(101, 315); 80 this.btnHideAll.Name = "btnHideAll"; 81 this.btnHideAll.Size = new System.Drawing.Size(75, 23); 82 this.btnHideAll.TabIndex = 2; 83 this.btnHideAll.Text = "Hide all"; 84 this.btnHideAll.UseVisualStyleBackColor = true; 85 this.btnHideAll.Click += new System.EventHandler(this.btnHideAll_Click); 62 86 // 63 87 // ColumnsVisibilityDialog … … 65 89 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 66 90 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 67 this.ClientSize = new System.Drawing.Size(194, 273); 91 this.ClientSize = new System.Drawing.Size(332, 350); 92 this.Controls.Add(this.btnHideAll); 93 this.Controls.Add(this.btnShowAll); 68 94 this.Controls.Add(this.checkedListBox); 69 95 this.MaximizeBox = false; … … 72 98 this.ShowIcon = false; 73 99 this.ShowInTaskbar = false; 74 this.Text = "Show / Hide Columns"; 100 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 101 this.Text = "Show/Hide Columns"; 75 102 this.ResumeLayout(false); 76 103 … … 80 107 81 108 private System.Windows.Forms.CheckedListBox checkedListBox; 109 private System.Windows.Forms.Button btnShowAll; 110 private System.Windows.Forms.Button btnHideAll; 82 111 } 83 112 }
Note: See TracChangeset
for help on using the changeset viewer.