Form1.Designer.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. namespace WindowsFormsApp1
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.File_Text = new System.Windows.Forms.TextBox();
  32. this.button2 = new System.Windows.Forms.Button();
  33. this.button3 = new System.Windows.Forms.Button();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.button4 = new System.Windows.Forms.Button();
  36. this.button5 = new System.Windows.Forms.Button();
  37. this.SuspendLayout();
  38. //
  39. // button1
  40. //
  41. this.button1.Location = new System.Drawing.Point(369, 47);
  42. this.button1.Name = "button1";
  43. this.button1.Size = new System.Drawing.Size(98, 35);
  44. this.button1.TabIndex = 0;
  45. this.button1.Text = "打开文件";
  46. this.button1.UseVisualStyleBackColor = true;
  47. this.button1.Click += new System.EventHandler(this.button1_Click);
  48. //
  49. // label1
  50. //
  51. this.label1.AutoSize = true;
  52. this.label1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  53. this.label1.Location = new System.Drawing.Point(17, 27);
  54. this.label1.Name = "label1";
  55. this.label1.Size = new System.Drawing.Size(80, 16);
  56. this.label1.TabIndex = 1;
  57. this.label1.Text = "文件路径:";
  58. this.label1.Click += new System.EventHandler(this.label1_Click);
  59. //
  60. // File_Text
  61. //
  62. this.File_Text.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  63. this.File_Text.Location = new System.Drawing.Point(20, 51);
  64. this.File_Text.Multiline = true;
  65. this.File_Text.Name = "File_Text";
  66. this.File_Text.Size = new System.Drawing.Size(322, 72);
  67. this.File_Text.TabIndex = 2;
  68. //
  69. // button2
  70. //
  71. this.button2.Location = new System.Drawing.Point(369, 88);
  72. this.button2.Name = "button2";
  73. this.button2.Size = new System.Drawing.Size(98, 35);
  74. this.button2.TabIndex = 3;
  75. this.button2.Text = "开始烧录";
  76. this.button2.UseVisualStyleBackColor = true;
  77. this.button2.Click += new System.EventHandler(this.button2_Click);
  78. //
  79. // button3
  80. //
  81. this.button3.Location = new System.Drawing.Point(20, 180);
  82. this.button3.Name = "button3";
  83. this.button3.Size = new System.Drawing.Size(98, 35);
  84. this.button3.TabIndex = 5;
  85. this.button3.Text = "开始转换";
  86. this.button3.UseVisualStyleBackColor = true;
  87. this.button3.Click += new System.EventHandler(this.button3_Click);
  88. //
  89. // label2
  90. //
  91. this.label2.AutoSize = true;
  92. this.label2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  93. this.label2.Location = new System.Drawing.Point(17, 161);
  94. this.label2.Name = "label2";
  95. this.label2.Size = new System.Drawing.Size(128, 16);
  96. this.label2.TabIndex = 6;
  97. this.label2.Text = "DAT/BIN文件转换";
  98. //
  99. // button4
  100. //
  101. this.button4.Location = new System.Drawing.Point(20, 231);
  102. this.button4.Name = "button4";
  103. this.button4.Size = new System.Drawing.Size(98, 35);
  104. this.button4.TabIndex = 7;
  105. this.button4.Text = "读取MAC地址";
  106. this.button4.UseVisualStyleBackColor = true;
  107. this.button4.Click += new System.EventHandler(this.button4_Click);
  108. //
  109. // button5
  110. //
  111. this.button5.Location = new System.Drawing.Point(20, 284);
  112. this.button5.Name = "button5";
  113. this.button5.Size = new System.Drawing.Size(98, 35);
  114. this.button5.TabIndex = 8;
  115. this.button5.Text = "读取固件";
  116. this.button5.UseVisualStyleBackColor = true;
  117. this.button5.Click += new System.EventHandler(this.button5_Click);
  118. //
  119. // Form1
  120. //
  121. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  122. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  123. this.ClientSize = new System.Drawing.Size(521, 380);
  124. this.Controls.Add(this.button5);
  125. this.Controls.Add(this.button4);
  126. this.Controls.Add(this.label2);
  127. this.Controls.Add(this.button3);
  128. this.Controls.Add(this.button2);
  129. this.Controls.Add(this.File_Text);
  130. this.Controls.Add(this.label1);
  131. this.Controls.Add(this.button1);
  132. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  133. this.Name = "Form1";
  134. this.Text = "自制上位机烧录软件V1.0-LiuHao";
  135. this.Load += new System.EventHandler(this.Form1_Load);
  136. this.ResumeLayout(false);
  137. this.PerformLayout();
  138. }
  139. #endregion
  140. private System.Windows.Forms.Button button1;
  141. private System.Windows.Forms.Label label1;
  142. private System.Windows.Forms.TextBox File_Text;
  143. private System.Windows.Forms.Button button2;
  144. private System.Windows.Forms.Button button3;
  145. private System.Windows.Forms.Label label2;
  146. private System.Windows.Forms.Button button4;
  147. private System.Windows.Forms.Button button5;
  148. }
  149. }