123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- namespace CommonAIEditor
- {
- partial class FormTerrainDefinition
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.listView1 = new System.Windows.Forms.ListView();
- this.columnHeader0 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.toolStrip1 = new System.Windows.Forms.ToolStrip();
- this.btn_Add = new System.Windows.Forms.ToolStripButton();
- this.btn_Remove = new System.Windows.Forms.ToolStripButton();
- this.btn_UP = new System.Windows.Forms.ToolStripButton();
- this.btn_Down = new System.Windows.Forms.ToolStripButton();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.g2DPropertyGrid1 = new CommonFroms.G2D.DataGrid.G2DPropertyGrid();
- this.button_OK = new System.Windows.Forms.Button();
- this.toolStrip1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- this.SuspendLayout();
- //
- // listView1
- //
- this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
- this.columnHeader0,
- this.columnHeader1,
- this.columnHeader2,
- this.columnHeader3,
- this.columnHeader4});
- this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.listView1.FullRowSelect = true;
- this.listView1.GridLines = true;
- this.listView1.HideSelection = false;
- this.listView1.Location = new System.Drawing.Point(0, 0);
- this.listView1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.listView1.MultiSelect = false;
- this.listView1.Name = "listView1";
- this.listView1.Size = new System.Drawing.Size(481, 453);
- this.listView1.TabIndex = 2;
- this.listView1.UseCompatibleStateImageBehavior = false;
- this.listView1.View = System.Windows.Forms.View.Details;
- this.listView1.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.listView1_ItemSelectionChanged);
- this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
- //
- // columnHeader0
- //
- this.columnHeader0.Text = "";
- this.columnHeader0.Width = 24;
- //
- // columnHeader1
- //
- this.columnHeader1.Text = "颜色值";
- this.columnHeader1.Width = 160;
- //
- // columnHeader2
- //
- this.columnHeader2.Text = "阻挡";
- this.columnHeader2.Width = 69;
- //
- // columnHeader3
- //
- this.columnHeader3.Text = "名字";
- this.columnHeader3.Width = 82;
- //
- // columnHeader4
- //
- this.columnHeader4.Text = "注释";
- this.columnHeader4.Width = 75;
- //
- // toolStrip1
- //
- this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.btn_Add,
- this.btn_Remove,
- this.btn_UP,
- this.btn_Down});
- this.toolStrip1.Location = new System.Drawing.Point(0, 0);
- this.toolStrip1.Name = "toolStrip1";
- this.toolStrip1.Size = new System.Drawing.Size(739, 25);
- this.toolStrip1.TabIndex = 3;
- this.toolStrip1.Text = "toolStrip1";
- //
- // btn_Add
- //
- this.btn_Add.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.btn_Add.Image = global::CommonAIEditor.Properties.Resources.Image11;
- this.btn_Add.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.btn_Add.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.btn_Add.Name = "btn_Add";
- this.btn_Add.Size = new System.Drawing.Size(23, 22);
- this.btn_Add.Text = "添加";
- this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
- //
- // btn_Remove
- //
- this.btn_Remove.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.btn_Remove.Image = global::CommonAIEditor.Properties.Resources.Image13;
- this.btn_Remove.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.btn_Remove.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.btn_Remove.Name = "btn_Remove";
- this.btn_Remove.Size = new System.Drawing.Size(23, 22);
- this.btn_Remove.Text = "移除";
- this.btn_Remove.Click += new System.EventHandler(this.btn_Remove_Click);
- //
- // btn_UP
- //
- this.btn_UP.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.btn_UP.Image = global::CommonAIEditor.Properties.Resources.Image34;
- this.btn_UP.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.btn_UP.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.btn_UP.Name = "btn_UP";
- this.btn_UP.Size = new System.Drawing.Size(23, 22);
- this.btn_UP.Text = "上移";
- //
- // btn_Down
- //
- this.btn_Down.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.btn_Down.Image = global::CommonAIEditor.Properties.Resources.Image35;
- this.btn_Down.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.btn_Down.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.btn_Down.Name = "btn_Down";
- this.btn_Down.Size = new System.Drawing.Size(23, 22);
- this.btn_Down.Text = "下移";
- //
- // splitContainer1
- //
- this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
- this.splitContainer1.Location = new System.Drawing.Point(0, 35);
- this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.listView1);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.g2DPropertyGrid1);
- this.splitContainer1.Size = new System.Drawing.Size(739, 453);
- this.splitContainer1.SplitterDistance = 481;
- this.splitContainer1.SplitterWidth = 5;
- this.splitContainer1.TabIndex = 4;
- //
- // g2DPropertyGrid1
- //
- this.g2DPropertyGrid1.CategoryForeColor = System.Drawing.SystemColors.InactiveCaptionText;
- this.g2DPropertyGrid1.DescriptionAreaHeight = 81;
- this.g2DPropertyGrid1.DescriptionAreaLineCount = 4;
- this.g2DPropertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.g2DPropertyGrid1.ImeMode = System.Windows.Forms.ImeMode.On;
- this.g2DPropertyGrid1.Location = new System.Drawing.Point(0, 0);
- this.g2DPropertyGrid1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.g2DPropertyGrid1.MinDescriptionAreaLineCount = 5;
- this.g2DPropertyGrid1.Name = "g2DPropertyGrid1";
- this.g2DPropertyGrid1.Size = new System.Drawing.Size(253, 453);
- this.g2DPropertyGrid1.TabIndex = 0;
- this.g2DPropertyGrid1.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.g2DPropertyGrid1_PropertyValueChanged);
- //
- // button_OK
- //
- this.button_OK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.button_OK.Location = new System.Drawing.Point(595, 518);
- this.button_OK.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.button_OK.Name = "button_OK";
- this.button_OK.Size = new System.Drawing.Size(129, 58);
- this.button_OK.TabIndex = 5;
- this.button_OK.Text = "OK";
- this.button_OK.UseVisualStyleBackColor = true;
- this.button_OK.Click += new System.EventHandler(this.button_OK_Click);
- //
- // FormTerrainDefinition
- //
- this.AcceptButton = this.button_OK;
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(739, 593);
- this.Controls.Add(this.button_OK);
- this.Controls.Add(this.splitContainer1);
- this.Controls.Add(this.toolStrip1);
- this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ImeMode = System.Windows.Forms.ImeMode.On;
- this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.Name = "FormTerrainDefinition";
- this.Text = "FormTerrainDefinition";
- this.toolStrip1.ResumeLayout(false);
- this.toolStrip1.PerformLayout();
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.ListView listView1;
- private System.Windows.Forms.ColumnHeader columnHeader1;
- private System.Windows.Forms.ColumnHeader columnHeader2;
- private System.Windows.Forms.ColumnHeader columnHeader3;
- private System.Windows.Forms.ToolStrip toolStrip1;
- private System.Windows.Forms.ToolStripButton btn_Add;
- private System.Windows.Forms.ToolStripButton btn_Remove;
- private System.Windows.Forms.ColumnHeader columnHeader4;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private CommonFroms.G2D.DataGrid.G2DPropertyGrid g2DPropertyGrid1;
- private System.Windows.Forms.ColumnHeader columnHeader0;
- private System.Windows.Forms.ToolStripButton btn_UP;
- private System.Windows.Forms.ToolStripButton btn_Down;
- private System.Windows.Forms.Button button_OK;
- }
- }
|