Free cookie consent management tool by TermsFeed Policy Generator

source: branches/StackingProblems/HeuristicLab.Data.MoveVectorData.Views/3.3/StackingAreaView.Designer.cs @ 14278

Last change on this file since 14278 was 14278, checked in by mzehetho, 8 years ago

Initial Commit for ticket #2605

Implemented:

  • Encoding
  • Moves
  • Views
  • Blocks World Problem
  • Blocks Relocation Problem
  • Stacking Problem
File size: 5.3 KB
RevLine 
[14278]1namespace HeuristicLab.Data.MoveVectorData.Views
2{
3    partial class StackingAreaView
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing)
17            {
18                if (components != null) components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Component Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31            this.components = new System.ComponentModel.Container();
32            this.dataGridView = new System.Windows.Forms.DataGridView();
33            this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
34            this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
35            this.ShowHideColumns = new System.Windows.Forms.ToolStripMenuItem();
36            ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
37            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
38            this.contextMenu.SuspendLayout();
39            this.SuspendLayout();
40            //
41            // dataGridView
42            //
43            this.dataGridView.AllowUserToAddRows = false;
44            this.dataGridView.AllowUserToDeleteRows = false;
45            this.dataGridView.AllowUserToOrderColumns = true;
46            this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
47            | System.Windows.Forms.AnchorStyles.Left)
48            | System.Windows.Forms.AnchorStyles.Right)));
49            this.dataGridView.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable;
50            this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
51            this.dataGridView.Location = new System.Drawing.Point(0, 0);
52            this.dataGridView.Name = "dataGridView";
53            this.dataGridView.RowHeadersWidth = 160;
54            this.dataGridView.Size = new System.Drawing.Size(424, 401);
55            this.dataGridView.TabIndex = 4;
56            this.dataGridView.VirtualMode = true;
57            this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellEndEdit);
58            this.dataGridView.CellParsing += new System.Windows.Forms.DataGridViewCellParsingEventHandler(this.dataGridView_CellParsing);
59            this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
60            this.dataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dataGridView_CellValueNeeded);
61            this.dataGridView.Scroll += new System.Windows.Forms.ScrollEventHandler(this.dataGridView_Scroll);
62            this.dataGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView_KeyDown);
63            this.dataGridView.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dataGridView_MouseClick);
64            this.dataGridView.Resize += new System.EventHandler(this.dataGridView_Resize);
65            //
66            // errorProvider
67            //
68            this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
69            this.errorProvider.ContainerControl = this;
70            //
71            // contextMenu
72            //
73            this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
74            this.ShowHideColumns});
75            this.contextMenu.Name = "contextMenu";
76            this.contextMenu.Size = new System.Drawing.Size(68, 26);
77            //
78            // ShowHideColumns
79            //
80            this.ShowHideColumns.Name = "ShowHideColumns";
81            this.ShowHideColumns.Size = new System.Drawing.Size(67, 22);
82            //
83            // StackingAreaView
84            //
85            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
86            this.Controls.Add(this.dataGridView);
87            this.Name = "StackingAreaView";
88            this.Size = new System.Drawing.Size(424, 404);
89            ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
90            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
91            this.contextMenu.ResumeLayout(false);
92            this.ResumeLayout(false);
93
94        }
95        #endregion
96        protected System.Windows.Forms.ErrorProvider errorProvider;
97        protected System.Windows.Forms.ContextMenuStrip contextMenu;
98        protected System.Windows.Forms.ToolStripMenuItem ShowHideColumns;
99        protected System.Windows.Forms.DataGridView dataGridView;
100
101    }
102}
Note: See TracBrowser for help on using the repository browser.