Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2845_EnhancedProgress/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixVisibilityDialog.Designer.cs @ 16311

Last change on this file since 16311 was 16311, checked in by pfleck, 5 years ago

#2845 Merged trunk changes into branch (15406-15681, 15683-16308)

File size: 4.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Data.Views {
23  partial class StringConvertibleMatrixVisibilityDialog<T> {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.checkedListBox = new System.Windows.Forms.CheckedListBox();
48      this.btnShowAll = new System.Windows.Forms.Button();
49      this.btnHideAll = new System.Windows.Forms.Button();
50      this.SuspendLayout();
51      //
52      // checkedListBox
53      //
54      this.checkedListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
55                  | System.Windows.Forms.AnchorStyles.Left)
56                  | System.Windows.Forms.AnchorStyles.Right)));
57      this.checkedListBox.CheckOnClick = true;
58      this.checkedListBox.FormattingEnabled = true;
59      this.checkedListBox.Location = new System.Drawing.Point(12, 12);
60      this.checkedListBox.Name = "checkedListBox";
61      this.checkedListBox.Size = new System.Drawing.Size(309, 289);
62      this.checkedListBox.TabIndex = 0;
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);
86      //
87      // ColumnsVisibilityDialog
88      //
89      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
90      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
91      this.ClientSize = new System.Drawing.Size(332, 350);
92      this.Controls.Add(this.btnHideAll);
93      this.Controls.Add(this.btnShowAll);
94      this.Controls.Add(this.checkedListBox);
95      this.MaximizeBox = false;
96      this.MinimizeBox = false;
97      this.Name = "ColumnsVisibilityDialog";
98      this.ShowIcon = false;
99      this.ShowInTaskbar = false;
100      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
101      this.Text = "Show/Hide";
102      this.ResumeLayout(false);
103
104    }
105
106    #endregion
107
108    protected System.Windows.Forms.CheckedListBox checkedListBox;
109    protected System.Windows.Forms.Button btnShowAll;
110    protected System.Windows.Forms.Button btnHideAll;
111  }
112}
Note: See TracBrowser for help on using the repository browser.