MainForm.Designer.cs 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. namespace Y.Test.Views
  2. {
  3. partial class MainForm
  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.ChineseCalendarForm = new System.Windows.Forms.Button();
  29. this.TestComputerInfoForm = new System.Windows.Forms.Button();
  30. this.TestUpdateForm = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // ChineseCalendarForm
  34. //
  35. this.ChineseCalendarForm.Location = new System.Drawing.Point(70, 80);
  36. this.ChineseCalendarForm.Name = "ChineseCalendarForm";
  37. this.ChineseCalendarForm.Size = new System.Drawing.Size(262, 23);
  38. this.ChineseCalendarForm.TabIndex = 0;
  39. this.ChineseCalendarForm.Text = "ChineseCalendarForm";
  40. this.ChineseCalendarForm.UseVisualStyleBackColor = true;
  41. this.ChineseCalendarForm.Click += new System.EventHandler(this.ChineseCalendarForm_Click);
  42. //
  43. // TestComputerInfoForm
  44. //
  45. this.TestComputerInfoForm.Location = new System.Drawing.Point(70, 149);
  46. this.TestComputerInfoForm.Name = "TestComputerInfoForm";
  47. this.TestComputerInfoForm.Size = new System.Drawing.Size(262, 23);
  48. this.TestComputerInfoForm.TabIndex = 1;
  49. this.TestComputerInfoForm.Text = "TestComputerInfoForm";
  50. this.TestComputerInfoForm.UseVisualStyleBackColor = true;
  51. this.TestComputerInfoForm.Click += new System.EventHandler(this.TestComputerInfoForm_Click);
  52. //
  53. // TestUpdateForm
  54. //
  55. this.TestUpdateForm.Location = new System.Drawing.Point(70, 206);
  56. this.TestUpdateForm.Name = "TestUpdateForm";
  57. this.TestUpdateForm.Size = new System.Drawing.Size(262, 23);
  58. this.TestUpdateForm.TabIndex = 2;
  59. this.TestUpdateForm.Text = "TestUpdateForm";
  60. this.TestUpdateForm.UseVisualStyleBackColor = true;
  61. this.TestUpdateForm.Click += new System.EventHandler(this.TestUpdateForm_Click);
  62. //
  63. // MainForm
  64. //
  65. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  67. this.ClientSize = new System.Drawing.Size(564, 427);
  68. this.Controls.Add(this.TestUpdateForm);
  69. this.Controls.Add(this.TestComputerInfoForm);
  70. this.Controls.Add(this.ChineseCalendarForm);
  71. this.Name = "MainForm";
  72. this.Text = "MainForm";
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.Button ChineseCalendarForm;
  77. private System.Windows.Forms.Button TestComputerInfoForm;
  78. private System.Windows.Forms.Button TestUpdateForm;
  79. }
  80. }