Changeset 6016 for branches/histogram/HeuristicLab.Analysis.Views/3.3/DataTableVisualPropertiesDialog.Designer.cs
- Timestamp:
- 04/16/11 11:48:21 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram/HeuristicLab.Analysis.Views/3.3/DataTableVisualPropertiesDialog.Designer.cs
r6014 r6016 51 51 this.splitContainer = new System.Windows.Forms.SplitContainer(); 52 52 this.seriesListView = new System.Windows.Forms.ListView(); 53 this.dataRowVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataRowVisualPropertiesControl(); 53 54 this.chartTabPage = new System.Windows.Forms.TabPage(); 54 this.dataRowVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataRowVisualPropertiesControl();55 55 this.dataTableVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataTableVisualPropertiesControl(); 56 this.upButton = new System.Windows.Forms.Button(); 57 this.downButton = new System.Windows.Forms.Button(); 56 58 this.tabControl.SuspendLayout(); 57 59 this.seriesTabPage.SuspendLayout(); … … 120 122 // splitContainer.Panel1 121 123 // 124 this.splitContainer.Panel1.Controls.Add(this.downButton); 125 this.splitContainer.Panel1.Controls.Add(this.upButton); 122 126 this.splitContainer.Panel1.Controls.Add(this.seriesListView); 123 127 this.splitContainer.Panel1MinSize = 20; … … 133 137 // seriesListView 134 138 // 135 this.seriesListView.Dock = System.Windows.Forms.DockStyle.Fill; 139 this.seriesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 140 | System.Windows.Forms.AnchorStyles.Left) 141 | System.Windows.Forms.AnchorStyles.Right))); 136 142 this.seriesListView.HideSelection = false; 137 this.seriesListView.Location = new System.Drawing.Point(0, 0);143 this.seriesListView.Location = new System.Drawing.Point(0, 28); 138 144 this.seriesListView.MultiSelect = false; 139 145 this.seriesListView.Name = "seriesListView"; 140 146 this.seriesListView.ShowGroups = false; 141 this.seriesListView.Size = new System.Drawing.Size(125, 318);147 this.seriesListView.Size = new System.Drawing.Size(125, 289); 142 148 this.seriesListView.TabIndex = 0; 143 149 this.seriesListView.UseCompatibleStateImageBehavior = false; 144 150 this.seriesListView.View = System.Windows.Forms.View.SmallIcon; 145 151 this.seriesListView.SelectedIndexChanged += new System.EventHandler(this.seriesListView_SelectedIndexChanged); 152 // 153 // dataRowVisualPropertiesControl 154 // 155 this.dataRowVisualPropertiesControl.Content = null; 156 this.dataRowVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill; 157 this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(0, 0); 158 this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl"; 159 this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(331, 318); 160 this.dataRowVisualPropertiesControl.TabIndex = 0; 146 161 // 147 162 // chartTabPage … … 156 171 this.chartTabPage.UseVisualStyleBackColor = true; 157 172 // 158 // dataRowVisualPropertiesControl159 //160 this.dataRowVisualPropertiesControl.Content = null;161 this.dataRowVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;162 this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(0, 0);163 this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl";164 this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(331, 318);165 this.dataRowVisualPropertiesControl.TabIndex = 0;166 //167 173 // dataTableVisualPropertiesControl 168 174 // … … 173 179 this.dataTableVisualPropertiesControl.Size = new System.Drawing.Size(460, 318); 174 180 this.dataTableVisualPropertiesControl.TabIndex = 0; 181 // 182 // upButton 183 // 184 this.upButton.Location = new System.Drawing.Point(-1, 3); 185 this.upButton.Name = "upButton"; 186 this.upButton.Size = new System.Drawing.Size(26, 23); 187 this.upButton.TabIndex = 1; 188 this.upButton.Text = "Up"; 189 this.upButton.UseVisualStyleBackColor = true; 190 this.upButton.Click += new System.EventHandler(this.upButton_Click); 191 // 192 // downButton 193 // 194 this.downButton.Location = new System.Drawing.Point(27, 3); 195 this.downButton.Name = "downButton"; 196 this.downButton.Size = new System.Drawing.Size(26, 23); 197 this.downButton.TabIndex = 1; 198 this.downButton.Text = "Down"; 199 this.downButton.UseVisualStyleBackColor = true; 200 this.downButton.Click += new System.EventHandler(this.downButton_Click); 175 201 // 176 202 // DataTableVisualPropertiesDialog … … 208 234 private DataRowVisualPropertiesControl dataRowVisualPropertiesControl; 209 235 private DataTableVisualPropertiesControl dataTableVisualPropertiesControl; 236 private System.Windows.Forms.Button downButton; 237 private System.Windows.Forms.Button upButton; 210 238 } 211 239 }
Note: See TracChangeset
for help on using the changeset viewer.