Form1.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. 
  2. namespace wispro.sp.winClient
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.button5 = new System.Windows.Forms.Button();
  33. this.button6 = new System.Windows.Forms.Button();
  34. this.button7 = new System.Windows.Forms.Button();
  35. this.button4 = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // button1
  39. //
  40. this.button1.Location = new System.Drawing.Point(52, 69);
  41. this.button1.Name = "button1";
  42. this.button1.Size = new System.Drawing.Size(257, 68);
  43. this.button1.TabIndex = 0;
  44. this.button1.Text = "合并反馈文档";
  45. this.button1.UseVisualStyleBackColor = true;
  46. this.button1.Click += new System.EventHandler(this.button1_Click);
  47. //
  48. // button2
  49. //
  50. this.button2.Location = new System.Drawing.Point(351, 69);
  51. this.button2.Name = "button2";
  52. this.button2.Size = new System.Drawing.Size(257, 68);
  53. this.button2.TabIndex = 0;
  54. this.button2.Text = "输入绩效基本点数";
  55. this.button2.UseVisualStyleBackColor = true;
  56. this.button2.Click += new System.EventHandler(this.button2_Click);
  57. //
  58. // button3
  59. //
  60. this.button3.Location = new System.Drawing.Point(634, 69);
  61. this.button3.Name = "button3";
  62. this.button3.Size = new System.Drawing.Size(257, 68);
  63. this.button3.TabIndex = 0;
  64. this.button3.Text = "计算绩效";
  65. this.button3.UseVisualStyleBackColor = true;
  66. this.button3.Click += new System.EventHandler(this.button3_Click);
  67. //
  68. // button5
  69. //
  70. this.button5.Location = new System.Drawing.Point(269, 159);
  71. this.button5.Name = "button5";
  72. this.button5.Size = new System.Drawing.Size(171, 45);
  73. this.button5.TabIndex = 1;
  74. this.button5.Text = "获取绩效报表";
  75. this.button5.UseVisualStyleBackColor = true;
  76. this.button5.Click += new System.EventHandler(this.button5_Click);
  77. //
  78. // button6
  79. //
  80. this.button6.Location = new System.Drawing.Point(494, 159);
  81. this.button6.Name = "button6";
  82. this.button6.Size = new System.Drawing.Size(171, 45);
  83. this.button6.TabIndex = 1;
  84. this.button6.Text = "更新绩效数据";
  85. this.button6.UseVisualStyleBackColor = true;
  86. this.button6.Click += new System.EventHandler(this.button6_Click);
  87. //
  88. // button7
  89. //
  90. this.button7.Location = new System.Drawing.Point(719, 159);
  91. this.button7.Name = "button7";
  92. this.button7.Size = new System.Drawing.Size(171, 45);
  93. this.button7.TabIndex = 1;
  94. this.button7.Text = "发送疑似问题通知";
  95. this.button7.UseVisualStyleBackColor = true;
  96. this.button7.Click += new System.EventHandler(this.button7_Click);
  97. //
  98. // button4
  99. //
  100. this.button4.Location = new System.Drawing.Point(44, 158);
  101. this.button4.Name = "button4";
  102. this.button4.Size = new System.Drawing.Size(197, 44);
  103. this.button4.TabIndex = 2;
  104. this.button4.Text = "button4";
  105. this.button4.UseVisualStyleBackColor = true;
  106. this.button4.Click += new System.EventHandler(this.button4_Click_1);
  107. //
  108. // Form1
  109. //
  110. this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
  111. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  112. this.ClientSize = new System.Drawing.Size(925, 215);
  113. this.Controls.Add(this.button4);
  114. this.Controls.Add(this.button7);
  115. this.Controls.Add(this.button6);
  116. this.Controls.Add(this.button5);
  117. this.Controls.Add(this.button3);
  118. this.Controls.Add(this.button2);
  119. this.Controls.Add(this.button1);
  120. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  121. this.Name = "Form1";
  122. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  123. this.Text = "人力绩效计算工具";
  124. this.ResumeLayout(false);
  125. }
  126. #endregion
  127. private System.Windows.Forms.Button button1;
  128. private System.Windows.Forms.Button button2;
  129. private System.Windows.Forms.Button button3;
  130. private System.Windows.Forms.Button button5;
  131. private System.Windows.Forms.Button button6;
  132. private System.Windows.Forms.Button button7;
  133. private System.Windows.Forms.Button button4;
  134. }
  135. }