WinMain.Designer.cs 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. namespace TestCad
  2. {
  3. partial class WinMain
  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.button1 = new System.Windows.Forms.Button();
  29. this.button2 = new System.Windows.Forms.Button();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(201, 84);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(75, 23);
  39. this.button1.TabIndex = 0;
  40. this.button1.Text = "导出";
  41. this.button1.UseVisualStyleBackColor = true;
  42. this.button1.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // button2
  45. //
  46. this.button2.Location = new System.Drawing.Point(242, 46);
  47. this.button2.Name = "button2";
  48. this.button2.Size = new System.Drawing.Size(34, 23);
  49. this.button2.TabIndex = 1;
  50. this.button2.Text = "选";
  51. this.button2.UseVisualStyleBackColor = true;
  52. this.button2.Click += new System.EventHandler(this.button2_Click);
  53. //
  54. // textBox1
  55. //
  56. this.textBox1.Location = new System.Drawing.Point(11, 48);
  57. this.textBox1.Name = "textBox1";
  58. this.textBox1.Size = new System.Drawing.Size(225, 21);
  59. this.textBox1.TabIndex = 2;
  60. this.textBox1.Text = "D:\\安装包\\CAD\\CAD-Revit模型检查-测试模型\\F4测试.dwg";
  61. //
  62. // label1
  63. //
  64. this.label1.AutoSize = true;
  65. this.label1.Location = new System.Drawing.Point(12, 19);
  66. this.label1.Name = "label1";
  67. this.label1.Size = new System.Drawing.Size(155, 12);
  68. this.label1.TabIndex = 3;
  69. this.label1.Text = "请选择需要提取的CAD文件:";
  70. //
  71. // WinMain
  72. //
  73. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  74. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  75. this.ClientSize = new System.Drawing.Size(289, 122);
  76. this.Controls.Add(this.label1);
  77. this.Controls.Add(this.textBox1);
  78. this.Controls.Add(this.button2);
  79. this.Controls.Add(this.button1);
  80. this.Name = "WinMain";
  81. this.Text = "提取CAD";
  82. this.ResumeLayout(false);
  83. this.PerformLayout();
  84. }
  85. #endregion
  86. private System.Windows.Forms.Button button1;
  87. private System.Windows.Forms.Button button2;
  88. private System.Windows.Forms.TextBox textBox1;
  89. private System.Windows.Forms.Label label1;
  90. }
  91. }