123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- namespace OTSPartA_STDEditor
- {
- partial class STDRuleslist
- {
- /// <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.components = new System.ComponentModel.Container();
- this.MenuStrip_STDRulelist = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.ToolStripMenuItem_New = new System.Windows.Forms.ToolStripMenuItem();
- this.ToolStripMenuItem_Del = new System.Windows.Forms.ToolStripMenuItem();
- this.tabControl1 = new System.Windows.Forms.TabControl();
- this.tabPage_GroupView = new System.Windows.Forms.TabPage();
- this.treeView_G = new System.Windows.Forms.TreeView();
- this.contextMenuStrip_GroupView = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.ToolStripMenuItem_NewGroup = new System.Windows.Forms.ToolStripMenuItem();
- this.ToolStripMenuItem_DelGroup = new System.Windows.Forms.ToolStripMenuItem();
- this.ToolStripMenuItem_EDGcolor = new System.Windows.Forms.ToolStripMenuItem();
- this.tabPage_RuleView = new System.Windows.Forms.TabPage();
- this.Grid_Minerals = new SourceGrid.Grid();
- this.button_DownOrder = new System.Windows.Forms.Button();
- this.button_UpOrder = new System.Windows.Forms.Button();
- this.MenuStrip_STDRulelist.SuspendLayout();
- this.tabControl1.SuspendLayout();
- this.tabPage_GroupView.SuspendLayout();
- this.contextMenuStrip_GroupView.SuspendLayout();
- this.tabPage_RuleView.SuspendLayout();
- this.SuspendLayout();
- //
- // MenuStrip_STDRulelist
- //
- this.MenuStrip_STDRulelist.ImageScalingSize = new System.Drawing.Size(24, 24);
- this.MenuStrip_STDRulelist.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.ToolStripMenuItem_New,
- this.ToolStripMenuItem_Del});
- this.MenuStrip_STDRulelist.Name = "MenuStrip_STDRulelist";
- this.MenuStrip_STDRulelist.Size = new System.Drawing.Size(101, 50);
- //
- // ToolStripMenuItem_New
- //
- this.ToolStripMenuItem_New.Name = "ToolStripMenuItem_New";
- this.ToolStripMenuItem_New.Size = new System.Drawing.Size(100, 22);
- this.ToolStripMenuItem_New.Text = "新建";
- this.ToolStripMenuItem_New.Click += new System.EventHandler(this.ToolStripMenuItem_New_Click);
- //
- // ToolStripMenuItem_Del
- //
- this.ToolStripMenuItem_Del.Name = "ToolStripMenuItem_Del";
- this.ToolStripMenuItem_Del.Size = new System.Drawing.Size(100, 22);
- this.ToolStripMenuItem_Del.Text = "删除";
- this.ToolStripMenuItem_Del.Click += new System.EventHandler(this.ToolStripMenuItem_Del_Click);
- //
- // tabControl1
- //
- this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
- this.tabControl1.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.tabControl1.Controls.Add(this.tabPage_GroupView);
- this.tabControl1.Controls.Add(this.tabPage_RuleView);
- this.tabControl1.Location = new System.Drawing.Point(1, 1);
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.SelectedIndex = 1;
- this.tabControl1.Size = new System.Drawing.Size(313, 782);
- this.tabControl1.TabIndex = 30;
- this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
- //
- // tabPage_GroupView
- //
- this.tabPage_GroupView.Controls.Add(this.treeView_G);
- this.tabPage_GroupView.Location = new System.Drawing.Point(4, 4);
- this.tabPage_GroupView.Name = "tabPage_GroupView";
- this.tabPage_GroupView.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage_GroupView.Size = new System.Drawing.Size(305, 756);
- this.tabPage_GroupView.TabIndex = 0;
- this.tabPage_GroupView.Text = "分组视图";
- this.tabPage_GroupView.UseVisualStyleBackColor = true;
- //
- // treeView_G
- //
- this.treeView_G.AllowDrop = true;
- this.treeView_G.ContextMenuStrip = this.contextMenuStrip_GroupView;
- this.treeView_G.Dock = System.Windows.Forms.DockStyle.Fill;
- this.treeView_G.Location = new System.Drawing.Point(3, 3);
- this.treeView_G.Name = "treeView_G";
- this.treeView_G.Size = new System.Drawing.Size(299, 750);
- this.treeView_G.TabIndex = 0;
- this.treeView_G.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeView_G_ItemDrag);
- this.treeView_G.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_G_NodeMouseClick);
- this.treeView_G.DragDrop += new System.Windows.Forms.DragEventHandler(this.treeView_G_DragDrop);
- this.treeView_G.DragOver += new System.Windows.Forms.DragEventHandler(this.treeView_G_DragOver);
- //
- // contextMenuStrip_GroupView
- //
- this.contextMenuStrip_GroupView.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.ToolStripMenuItem_NewGroup,
- this.ToolStripMenuItem_DelGroup,
- this.ToolStripMenuItem_EDGcolor});
- this.contextMenuStrip_GroupView.Name = "contextMenuStrip_GroupView";
- this.contextMenuStrip_GroupView.Size = new System.Drawing.Size(137, 70);
- //
- // ToolStripMenuItem_NewGroup
- //
- this.ToolStripMenuItem_NewGroup.Name = "ToolStripMenuItem_NewGroup";
- this.ToolStripMenuItem_NewGroup.Size = new System.Drawing.Size(136, 22);
- this.ToolStripMenuItem_NewGroup.Text = "新建组";
- this.ToolStripMenuItem_NewGroup.Click += new System.EventHandler(this.ToolStripMenuItem_NewGroup_Click);
- //
- // ToolStripMenuItem_DelGroup
- //
- this.ToolStripMenuItem_DelGroup.Name = "ToolStripMenuItem_DelGroup";
- this.ToolStripMenuItem_DelGroup.Size = new System.Drawing.Size(136, 22);
- this.ToolStripMenuItem_DelGroup.Text = "删除组";
- this.ToolStripMenuItem_DelGroup.Click += new System.EventHandler(this.ToolStripMenuItem_DelGroup_Click);
- //
- // ToolStripMenuItem_EDGcolor
- //
- this.ToolStripMenuItem_EDGcolor.Name = "ToolStripMenuItem_EDGcolor";
- this.ToolStripMenuItem_EDGcolor.Size = new System.Drawing.Size(136, 22);
- this.ToolStripMenuItem_EDGcolor.Text = "修改组颜色";
- this.ToolStripMenuItem_EDGcolor.Click += new System.EventHandler(this.ToolStripMenuItem_EdGroupColor_Click);
- //
- // tabPage_RuleView
- //
- this.tabPage_RuleView.Controls.Add(this.Grid_Minerals);
- this.tabPage_RuleView.Controls.Add(this.button_DownOrder);
- this.tabPage_RuleView.Controls.Add(this.button_UpOrder);
- this.tabPage_RuleView.Location = new System.Drawing.Point(4, 4);
- this.tabPage_RuleView.Name = "tabPage_RuleView";
- this.tabPage_RuleView.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage_RuleView.Size = new System.Drawing.Size(305, 756);
- this.tabPage_RuleView.TabIndex = 1;
- this.tabPage_RuleView.Text = "规则视图";
- this.tabPage_RuleView.UseVisualStyleBackColor = true;
- //
- // Grid_Minerals
- //
- this.Grid_Minerals.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.Grid_Minerals.BackColor = System.Drawing.SystemColors.Control;
- this.Grid_Minerals.ContextMenuStrip = this.MenuStrip_STDRulelist;
- this.Grid_Minerals.EnableSort = true;
- this.Grid_Minerals.Location = new System.Drawing.Point(27, 3);
- this.Grid_Minerals.Margin = new System.Windows.Forms.Padding(3, 3, 10, 3);
- this.Grid_Minerals.Name = "Grid_Minerals";
- this.Grid_Minerals.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
- this.Grid_Minerals.SelectionMode = SourceGrid.GridSelectionMode.Cell;
- this.Grid_Minerals.Size = new System.Drawing.Size(273, 751);
- this.Grid_Minerals.TabIndex = 30;
- this.Grid_Minerals.TabStop = true;
- this.Grid_Minerals.ToolTipText = "";
- this.Grid_Minerals.Click += new System.EventHandler(this.MineralsGrid_Click);
- //
- // button_DownOrder
- //
- this.button_DownOrder.Font = new System.Drawing.Font("华文彩云", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button_DownOrder.Location = new System.Drawing.Point(3, 118);
- this.button_DownOrder.Name = "button_DownOrder";
- this.button_DownOrder.Size = new System.Drawing.Size(18, 92);
- this.button_DownOrder.TabIndex = 32;
- this.button_DownOrder.Text = "↓";
- this.button_DownOrder.UseVisualStyleBackColor = true;
- this.button_DownOrder.Visible = false;
- this.button_DownOrder.Click += new System.EventHandler(this.button_DownOrder_Click);
- //
- // button_UpOrder
- //
- this.button_UpOrder.Font = new System.Drawing.Font("华文彩云", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button_UpOrder.Location = new System.Drawing.Point(3, 17);
- this.button_UpOrder.Name = "button_UpOrder";
- this.button_UpOrder.Size = new System.Drawing.Size(18, 92);
- this.button_UpOrder.TabIndex = 31;
- this.button_UpOrder.Text = "↑";
- this.button_UpOrder.UseVisualStyleBackColor = true;
- this.button_UpOrder.Visible = false;
- this.button_UpOrder.Click += new System.EventHandler(this.button_UpOrder_Click);
- //
- // STDRuleslist
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.AutoScroll = true;
- this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
- this.ClientSize = new System.Drawing.Size(317, 785);
- this.CloseButton = false;
- this.CloseButtonVisible = false;
- this.Controls.Add(this.tabControl1);
- this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Name = "STDRuleslist";
- this.ShowIcon = false;
- this.Text = "STDRuleslist";
- this.Load += new System.EventHandler(this.STDRuleslist_Load);
- this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Grid_Minerals_PreviewKeyDown);
- this.MenuStrip_STDRulelist.ResumeLayout(false);
- this.tabControl1.ResumeLayout(false);
- this.tabPage_GroupView.ResumeLayout(false);
- this.contextMenuStrip_GroupView.ResumeLayout(false);
- this.tabPage_RuleView.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.ContextMenuStrip MenuStrip_STDRulelist;
- private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_New;
- private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_Del;
- private System.Windows.Forms.TabPage tabPage_GroupView;
- private System.Windows.Forms.TabPage tabPage_RuleView;
- public System.Windows.Forms.Button button_DownOrder;
- public System.Windows.Forms.Button button_UpOrder;
- private System.Windows.Forms.TreeView treeView_G;
- public SourceGrid.Grid Grid_Minerals;
- private System.Windows.Forms.ContextMenuStrip contextMenuStrip_GroupView;
- private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_NewGroup;
- private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_DelGroup;
- private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_EDGcolor;
- public System.Windows.Forms.TabControl tabControl1;
- }
- }
|