ParticleClassificationSelect.Designer.cs 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. 
  2. namespace OTSIncAReportApp._1_UI.Control_Grids.ParticlesGridDevidePage
  3. {
  4. partial class ParticleClassificationSelect
  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.panel1 = new System.Windows.Forms.Panel();
  30. this.btn_ok = new System.Windows.Forms.Button();
  31. this.btn_cannel = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // panel1
  35. //
  36. this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  37. this.panel1.Location = new System.Drawing.Point(2, 3);
  38. this.panel1.Name = "panel1";
  39. this.panel1.Size = new System.Drawing.Size(264, 507);
  40. this.panel1.TabIndex = 0;
  41. //
  42. // btn_ok
  43. //
  44. this.btn_ok.Location = new System.Drawing.Point(106, 514);
  45. this.btn_ok.Name = "btn_ok";
  46. this.btn_ok.Size = new System.Drawing.Size(75, 23);
  47. this.btn_ok.TabIndex = 1;
  48. this.btn_ok.Text = "OK";
  49. this.btn_ok.UseVisualStyleBackColor = true;
  50. this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click);
  51. //
  52. // btn_cannel
  53. //
  54. this.btn_cannel.Location = new System.Drawing.Point(191, 514);
  55. this.btn_cannel.Name = "btn_cannel";
  56. this.btn_cannel.Size = new System.Drawing.Size(75, 23);
  57. this.btn_cannel.TabIndex = 2;
  58. this.btn_cannel.Text = "Cannel";
  59. this.btn_cannel.UseVisualStyleBackColor = true;
  60. this.btn_cannel.Click += new System.EventHandler(this.btn_cannel_Click);
  61. //
  62. // ParticleClassificationSelect
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(269, 539);
  67. this.Controls.Add(this.btn_cannel);
  68. this.Controls.Add(this.btn_ok);
  69. this.Controls.Add(this.panel1);
  70. this.MaximizeBox = false;
  71. this.MaximumSize = new System.Drawing.Size(285, 578);
  72. this.MinimumSize = new System.Drawing.Size(285, 578);
  73. this.Name = "ParticleClassificationSelect";
  74. this.ShowIcon = false;
  75. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  76. this.Text = "颗粒类型选择";
  77. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ParticleClassificationSelect_FormClosing);
  78. this.Load += new System.EventHandler(this.ParticleClassificationSelect_Load);
  79. this.ResumeLayout(false);
  80. }
  81. #endregion
  82. private System.Windows.Forms.Panel panel1;
  83. private System.Windows.Forms.Button btn_ok;
  84. private System.Windows.Forms.Button btn_cannel;
  85. }
  86. }