STDRuleslist.Designer.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. namespace OTSPartA_STDEditor
  2. {
  3. partial class STDRuleslist
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.Grid_Minerals = new SourceGrid.Grid();
  30. this.MenuStrip_STDRulelist = new System.Windows.Forms.ContextMenuStrip(this.components);
  31. this.ToolStripMenuItem_New = new System.Windows.Forms.ToolStripMenuItem();
  32. this.ToolStripMenuItem_Del = new System.Windows.Forms.ToolStripMenuItem();
  33. this.button_UpOrder = new System.Windows.Forms.Button();
  34. this.button_DownOrder = new System.Windows.Forms.Button();
  35. this.MenuStrip_STDRulelist.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // Grid_Minerals
  39. //
  40. this.Grid_Minerals.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  41. | System.Windows.Forms.AnchorStyles.Right)));
  42. this.Grid_Minerals.BackColor = System.Drawing.SystemColors.Control;
  43. this.Grid_Minerals.ContextMenuStrip = this.MenuStrip_STDRulelist;
  44. this.Grid_Minerals.EnableSort = true;
  45. this.Grid_Minerals.Location = new System.Drawing.Point(27, 0);
  46. this.Grid_Minerals.Name = "Grid_Minerals";
  47. this.Grid_Minerals.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
  48. this.Grid_Minerals.SelectionMode = SourceGrid.GridSelectionMode.Cell;
  49. this.Grid_Minerals.Size = new System.Drawing.Size(341, 847);
  50. this.Grid_Minerals.TabIndex = 9;
  51. this.Grid_Minerals.TabStop = true;
  52. this.Grid_Minerals.ToolTipText = "";
  53. this.Grid_Minerals.Click += new System.EventHandler(this.MineralsGrid_Click);
  54. this.Grid_Minerals.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Grid_Minerals_PreviewKeyDown);
  55. //
  56. // MenuStrip_STDRulelist
  57. //
  58. this.MenuStrip_STDRulelist.ImageScalingSize = new System.Drawing.Size(24, 24);
  59. this.MenuStrip_STDRulelist.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  60. this.ToolStripMenuItem_New,
  61. this.ToolStripMenuItem_Del});
  62. this.MenuStrip_STDRulelist.Name = "MenuStrip_STDRulelist";
  63. this.MenuStrip_STDRulelist.Size = new System.Drawing.Size(101, 48);
  64. this.MenuStrip_STDRulelist.Resize += new System.EventHandler(this.MenuStrip_STDRulelist_Resize);
  65. //
  66. // ToolStripMenuItem_New
  67. //
  68. this.ToolStripMenuItem_New.Name = "ToolStripMenuItem_New";
  69. this.ToolStripMenuItem_New.Size = new System.Drawing.Size(100, 22);
  70. this.ToolStripMenuItem_New.Text = "新建";
  71. this.ToolStripMenuItem_New.Click += new System.EventHandler(this.ToolStripMenuItem_New_Click);
  72. //
  73. // ToolStripMenuItem_Del
  74. //
  75. this.ToolStripMenuItem_Del.Name = "ToolStripMenuItem_Del";
  76. this.ToolStripMenuItem_Del.Size = new System.Drawing.Size(100, 22);
  77. this.ToolStripMenuItem_Del.Text = "删除";
  78. this.ToolStripMenuItem_Del.Click += new System.EventHandler(this.ToolStripMenuItem_Del_Click);
  79. //
  80. // button_UpOrder
  81. //
  82. this.button_UpOrder.Font = new System.Drawing.Font("华文彩云", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  83. this.button_UpOrder.Location = new System.Drawing.Point(3, 14);
  84. this.button_UpOrder.Name = "button_UpOrder";
  85. this.button_UpOrder.Size = new System.Drawing.Size(18, 92);
  86. this.button_UpOrder.TabIndex = 28;
  87. this.button_UpOrder.Text = "↑";
  88. this.button_UpOrder.UseVisualStyleBackColor = true;
  89. this.button_UpOrder.Click += new System.EventHandler(this.button_UpOrder_Click);
  90. //
  91. // button_DownOrder
  92. //
  93. this.button_DownOrder.Font = new System.Drawing.Font("华文彩云", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  94. this.button_DownOrder.Location = new System.Drawing.Point(3, 115);
  95. this.button_DownOrder.Name = "button_DownOrder";
  96. this.button_DownOrder.Size = new System.Drawing.Size(18, 92);
  97. this.button_DownOrder.TabIndex = 29;
  98. this.button_DownOrder.Text = "↓";
  99. this.button_DownOrder.UseVisualStyleBackColor = true;
  100. this.button_DownOrder.Click += new System.EventHandler(this.button_DownOrder_Click);
  101. //
  102. // STDRuleslist
  103. //
  104. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  105. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  106. this.ClientSize = new System.Drawing.Size(368, 847);
  107. this.CloseButton = false;
  108. this.CloseButtonVisible = false;
  109. this.Controls.Add(this.button_UpOrder);
  110. this.Controls.Add(this.button_DownOrder);
  111. this.Controls.Add(this.Grid_Minerals);
  112. this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  113. this.Name = "STDRuleslist";
  114. this.ShowIcon = false;
  115. this.Text = "STDRuleslist";
  116. this.Load += new System.EventHandler(this.STDRuleslist_Load);
  117. this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Grid_Minerals_PreviewKeyDown);
  118. this.MenuStrip_STDRulelist.ResumeLayout(false);
  119. this.ResumeLayout(false);
  120. }
  121. #endregion
  122. public SourceGrid.Grid Grid_Minerals;
  123. private System.Windows.Forms.ContextMenuStrip MenuStrip_STDRulelist;
  124. private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_New;
  125. private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_Del;
  126. public System.Windows.Forms.Button button_UpOrder;
  127. public System.Windows.Forms.Button button_DownOrder;
  128. }
  129. }