Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data.Views/3.3/ColumnsVisibilityDialog.Designer.cs @ 3316

Last change on this file since 3316 was 3316, checked in by mkommend, 14 years ago

added possibility to change visibility of columns in StringConvertibleMatrixView (ticket #968)

File size: 2.3 KB
Line 
1namespace 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.ShowInTaskbar = false;
52      this.Text = "Show / Hide Columns";
53      this.ResumeLayout(false);
54
55    }
56
57    #endregion
58
59    private System.Windows.Forms.CheckedListBox checkedListBox;
60  }
61}
Note: See TracBrowser for help on using the repository browser.