Form1.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. namespace EMIS.TestProject
  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. this.button1 = new System.Windows.Forms.Button();
  29. this.button2 = new System.Windows.Forms.Button();
  30. this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.button4 = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // button1
  36. //
  37. this.button1.Location = new System.Drawing.Point(31, 23);
  38. this.button1.Name = "button1";
  39. this.button1.Size = new System.Drawing.Size(99, 23);
  40. this.button1.TabIndex = 0;
  41. this.button1.Text = "自动排课";
  42. this.button1.UseVisualStyleBackColor = true;
  43. this.button1.Click += new System.EventHandler(this.button1_Click);
  44. //
  45. // button2
  46. //
  47. this.button2.Location = new System.Drawing.Point(31, 63);
  48. this.button2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  49. this.button2.Name = "button2";
  50. this.button2.Size = new System.Drawing.Size(85, 34);
  51. this.button2.TabIndex = 1;
  52. this.button2.Text = "导照片";
  53. this.button2.UseVisualStyleBackColor = true;
  54. this.button2.Click += new System.EventHandler(this.button2_Click);
  55. //
  56. // button3
  57. //
  58. this.button3.Location = new System.Drawing.Point(31, 113);
  59. this.button3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  60. this.button3.Name = "button3";
  61. this.button3.Size = new System.Drawing.Size(173, 34);
  62. this.button3.TabIndex = 2;
  63. this.button3.Text = "自动生成学年学期";
  64. this.button3.UseVisualStyleBackColor = true;
  65. this.button3.Click += new System.EventHandler(this.button3_Click);
  66. //
  67. // button4
  68. //
  69. this.button4.Location = new System.Drawing.Point(31, 169);
  70. this.button4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  71. this.button4.Name = "button4";
  72. this.button4.Size = new System.Drawing.Size(173, 34);
  73. this.button4.TabIndex = 3;
  74. this.button4.Text = "测试人员同步";
  75. this.button4.UseVisualStyleBackColor = true;
  76. this.button4.Click += new System.EventHandler(this.button4_Click);
  77. //
  78. // Form1
  79. //
  80. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  81. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  82. this.ClientSize = new System.Drawing.Size(683, 244);
  83. this.Controls.Add(this.button4);
  84. this.Controls.Add(this.button3);
  85. this.Controls.Add(this.button2);
  86. this.Controls.Add(this.button1);
  87. this.Name = "Form1";
  88. this.Text = "Form1";
  89. this.Load += new System.EventHandler(this.Form1_Load);
  90. this.ResumeLayout(false);
  91. }
  92. #endregion
  93. private System.Windows.Forms.Button button1;
  94. private System.Windows.Forms.Button button2;
  95. public System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
  96. private System.Windows.Forms.Button button3;
  97. private System.Windows.Forms.Button button4;
  98. }
  99. }