1 | namespace HeuristicLab.Data.Views {
|
---|
2 | partial class ColumnsVisibilityDialog {
|
---|
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.checkedListBox = new System.Windows.Forms.CheckedListBox();
|
---|
27 | this.SuspendLayout();
|
---|
28 | //
|
---|
29 | // checkedListBox
|
---|
30 | //
|
---|
31 | this.checkedListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
32 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
33 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
34 | this.checkedListBox.CheckOnClick = true;
|
---|
35 | this.checkedListBox.FormattingEnabled = true;
|
---|
36 | this.checkedListBox.Location = new System.Drawing.Point(12, 12);
|
---|
37 | this.checkedListBox.Name = "checkedListBox";
|
---|
38 | this.checkedListBox.Size = new System.Drawing.Size(171, 244);
|
---|
39 | this.checkedListBox.TabIndex = 0;
|
---|
40 | this.checkedListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox_ItemCheck);
|
---|
41 | //
|
---|
42 | // ColumnsVisibilityDialog
|
---|
43 | //
|
---|
44 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
45 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
46 | this.ClientSize = new System.Drawing.Size(194, 273);
|
---|
47 | this.Controls.Add(this.checkedListBox);
|
---|
48 | this.MaximizeBox = false;
|
---|
49 | this.MinimizeBox = false;
|
---|
50 | this.Name = "ColumnsVisibilityDialog";
|
---|
51 | this.ShowIcon = false;
|
---|
52 | this.ShowInTaskbar = false;
|
---|
53 | this.Text = "Show / Hide Columns";
|
---|
54 | this.ResumeLayout(false);
|
---|
55 |
|
---|
56 | }
|
---|
57 |
|
---|
58 | #endregion
|
---|
59 |
|
---|
60 | private System.Windows.Forms.CheckedListBox checkedListBox;
|
---|
61 | }
|
---|
62 | } |
---|