frmMain.Designer.cs 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. 
  2. namespace wispro.sp.winform
  3. {
  4. partial class frmMain
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.btnMerageExcel = new System.Windows.Forms.Button();
  30. this.btnInputdianshu = new System.Windows.Forms.Button();
  31. this.btnCalPerformance = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // btnMerageExcel
  35. //
  36. this.btnMerageExcel.Location = new System.Drawing.Point(62, 29);
  37. this.btnMerageExcel.Name = "btnMerageExcel";
  38. this.btnMerageExcel.Size = new System.Drawing.Size(220, 73);
  39. this.btnMerageExcel.TabIndex = 0;
  40. this.btnMerageExcel.Text = "合并反馈文档";
  41. this.btnMerageExcel.UseVisualStyleBackColor = true;
  42. this.btnMerageExcel.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // btnInputdianshu
  45. //
  46. this.btnInputdianshu.Location = new System.Drawing.Point(334, 29);
  47. this.btnInputdianshu.Name = "btnInputdianshu";
  48. this.btnInputdianshu.Size = new System.Drawing.Size(226, 73);
  49. this.btnInputdianshu.TabIndex = 1;
  50. this.btnInputdianshu.Text = "输入基础点数";
  51. this.btnInputdianshu.UseVisualStyleBackColor = true;
  52. this.btnInputdianshu.Click += new System.EventHandler(this.button1_Click_1);
  53. //
  54. // btnCalPerformance
  55. //
  56. this.btnCalPerformance.Location = new System.Drawing.Point(608, 29);
  57. this.btnCalPerformance.Name = "btnCalPerformance";
  58. this.btnCalPerformance.Size = new System.Drawing.Size(226, 73);
  59. this.btnCalPerformance.TabIndex = 1;
  60. this.btnCalPerformance.Text = "计算绩效点数";
  61. this.btnCalPerformance.UseVisualStyleBackColor = true;
  62. this.btnCalPerformance.Click += new System.EventHandler(this.btnCalPerformance_Click);
  63. //
  64. // frmMain
  65. //
  66. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  67. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  68. this.ClientSize = new System.Drawing.Size(882, 144);
  69. this.Controls.Add(this.btnCalPerformance);
  70. this.Controls.Add(this.btnInputdianshu);
  71. this.Controls.Add(this.btnMerageExcel);
  72. this.Name = "frmMain";
  73. this.Text = "威世博绩效点数计算工具";
  74. this.ResumeLayout(false);
  75. }
  76. #endregion
  77. private System.Windows.Forms.Button btnMerageExcel;
  78. private System.Windows.Forms.Button btnInputdianshu;
  79. private System.Windows.Forms.Button btnCalPerformance;
  80. }
  81. }