MainForm.Designer.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.SuspendLayout();
  31. //
  32. // ChineseCalendarForm
  33. //
  34. this.ChineseCalendarForm.Location = new System.Drawing.Point(70, 80);
  35. this.ChineseCalendarForm.Name = "ChineseCalendarForm";
  36. this.ChineseCalendarForm.Size = new System.Drawing.Size(262, 23);
  37. this.ChineseCalendarForm.TabIndex = 0;
  38. this.ChineseCalendarForm.Text = "ChineseCalendarForm";
  39. this.ChineseCalendarForm.UseVisualStyleBackColor = true;
  40. this.ChineseCalendarForm.Click += new System.EventHandler(this.ChineseCalendarForm_Click);
  41. //
  42. // TestComputerInfoForm
  43. //
  44. this.TestComputerInfoForm.Location = new System.Drawing.Point(70, 149);
  45. this.TestComputerInfoForm.Name = "TestComputerInfoForm";
  46. this.TestComputerInfoForm.Size = new System.Drawing.Size(262, 23);
  47. this.TestComputerInfoForm.TabIndex = 1;
  48. this.TestComputerInfoForm.Text = "TestComputerInfoForm";
  49. this.TestComputerInfoForm.UseVisualStyleBackColor = true;
  50. this.TestComputerInfoForm.Click += new System.EventHandler(this.TestComputerInfoForm_Click);
  51. //
  52. // MainForm
  53. //
  54. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  55. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  56. this.ClientSize = new System.Drawing.Size(564, 427);
  57. this.Controls.Add(this.TestComputerInfoForm);
  58. this.Controls.Add(this.ChineseCalendarForm);
  59. this.Name = "MainForm";
  60. this.Text = "MainForm";
  61. this.ResumeLayout(false);
  62. }
  63. #endregion
  64. private System.Windows.Forms.Button ChineseCalendarForm;
  65. private System.Windows.Forms.Button TestComputerInfoForm;
  66. }
  67. }