工具箱相关
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AttributeForm.Designer.cs 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. 
  2. namespace HCTools
  3. {
  4. partial class AttributeForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  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 && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. this.dataGridView_Info = new System.Windows.Forms.DataGridView();
  31. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  32. this.缩放至ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  34. this.button_cancelshow = new System.Windows.Forms.Button();
  35. this.button_show = new System.Windows.Forms.Button();
  36. this.button1 = new System.Windows.Forms.Button();
  37. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Info)).BeginInit();
  38. this.contextMenuStrip1.SuspendLayout();
  39. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  40. this.splitContainer1.Panel1.SuspendLayout();
  41. this.splitContainer1.Panel2.SuspendLayout();
  42. this.splitContainer1.SuspendLayout();
  43. this.SuspendLayout();
  44. //
  45. // dataGridView_Info
  46. //
  47. this.dataGridView_Info.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  48. this.dataGridView_Info.ContextMenuStrip = this.contextMenuStrip1;
  49. this.dataGridView_Info.Dock = System.Windows.Forms.DockStyle.Fill;
  50. this.dataGridView_Info.Location = new System.Drawing.Point(0, 0);
  51. this.dataGridView_Info.Name = "dataGridView_Info";
  52. this.dataGridView_Info.RowHeadersWidth = 51;
  53. this.dataGridView_Info.RowTemplate.Height = 27;
  54. this.dataGridView_Info.Size = new System.Drawing.Size(1010, 451);
  55. this.dataGridView_Info.TabIndex = 0;
  56. this.dataGridView_Info.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_Info_CellClick);
  57. this.dataGridView_Info.RowHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_Info_RowHeaderMouseClick);
  58. this.dataGridView_Info.SortCompare += new System.Windows.Forms.DataGridViewSortCompareEventHandler(this.dataGridView_Info_SortCompare);
  59. //
  60. // contextMenuStrip1
  61. //
  62. this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  63. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  64. this.缩放至ToolStripMenuItem});
  65. this.contextMenuStrip1.Name = "contextMenuStrip1";
  66. this.contextMenuStrip1.Size = new System.Drawing.Size(124, 28);
  67. //
  68. // 缩放至ToolStripMenuItem
  69. //
  70. this.缩放至ToolStripMenuItem.Name = "缩放至ToolStripMenuItem";
  71. this.缩放至ToolStripMenuItem.Size = new System.Drawing.Size(123, 24);
  72. this.缩放至ToolStripMenuItem.Text = "缩放至";
  73. this.缩放至ToolStripMenuItem.Click += new System.EventHandler(this.缩放至ToolStripMenuItem_Click);
  74. //
  75. // splitContainer1
  76. //
  77. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  78. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  79. this.splitContainer1.Name = "splitContainer1";
  80. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  81. //
  82. // splitContainer1.Panel1
  83. //
  84. this.splitContainer1.Panel1.Controls.Add(this.dataGridView_Info);
  85. //
  86. // splitContainer1.Panel2
  87. //
  88. this.splitContainer1.Panel2.Controls.Add(this.button_cancelshow);
  89. this.splitContainer1.Panel2.Controls.Add(this.button_show);
  90. this.splitContainer1.Panel2.Controls.Add(this.button1);
  91. this.splitContainer1.Size = new System.Drawing.Size(1010, 499);
  92. this.splitContainer1.SplitterDistance = 451;
  93. this.splitContainer1.TabIndex = 1;
  94. //
  95. // button_cancelshow
  96. //
  97. this.button_cancelshow.Location = new System.Drawing.Point(788, 5);
  98. this.button_cancelshow.Name = "button_cancelshow";
  99. this.button_cancelshow.Size = new System.Drawing.Size(107, 33);
  100. this.button_cancelshow.TabIndex = 2;
  101. this.button_cancelshow.Text = "取消显示选中";
  102. this.button_cancelshow.UseVisualStyleBackColor = true;
  103. this.button_cancelshow.Click += new System.EventHandler(this.button_cancelshow_Click);
  104. //
  105. // button_show
  106. //
  107. this.button_show.Location = new System.Drawing.Point(685, 5);
  108. this.button_show.Name = "button_show";
  109. this.button_show.Size = new System.Drawing.Size(80, 33);
  110. this.button_show.TabIndex = 1;
  111. this.button_show.Text = "显示选中";
  112. this.button_show.UseVisualStyleBackColor = true;
  113. this.button_show.Click += new System.EventHandler(this.button_show_Click);
  114. //
  115. // button1
  116. //
  117. this.button1.Location = new System.Drawing.Point(924, 5);
  118. this.button1.Name = "button1";
  119. this.button1.Size = new System.Drawing.Size(75, 33);
  120. this.button1.TabIndex = 0;
  121. this.button1.Text = "导 出";
  122. this.button1.UseVisualStyleBackColor = true;
  123. this.button1.Click += new System.EventHandler(this.button1_Click);
  124. //
  125. // AttributeForm
  126. //
  127. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  128. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  129. this.ClientSize = new System.Drawing.Size(1010, 499);
  130. this.Controls.Add(this.splitContainer1);
  131. this.Name = "AttributeForm";
  132. this.Text = "属性表";
  133. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.AttributeForm_FormClosed);
  134. this.Load += new System.EventHandler(this.AttributeForm_Load);
  135. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Info)).EndInit();
  136. this.contextMenuStrip1.ResumeLayout(false);
  137. this.splitContainer1.Panel1.ResumeLayout(false);
  138. this.splitContainer1.Panel2.ResumeLayout(false);
  139. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  140. this.splitContainer1.ResumeLayout(false);
  141. this.ResumeLayout(false);
  142. }
  143. #endregion
  144. private System.Windows.Forms.DataGridView dataGridView_Info;
  145. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  146. private System.Windows.Forms.ToolStripMenuItem 缩放至ToolStripMenuItem;
  147. private System.Windows.Forms.SplitContainer splitContainer1;
  148. private System.Windows.Forms.Button button1;
  149. private System.Windows.Forms.Button button_cancelshow;
  150. private System.Windows.Forms.Button button_show;
  151. }
  152. }