MainForm.Designer.cs 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. 
  2. namespace PTMedicalInsurance.Demo
  3. {
  4. partial class MainForm
  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.tabControl1 = new System.Windows.Forms.TabControl();
  30. this.tpFormInvoke = new System.Windows.Forms.TabPage();
  31. this.tpQueryUploadResult = new System.Windows.Forms.TabPage();
  32. this.tabControl1.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // tabControl1
  36. //
  37. this.tabControl1.Controls.Add(this.tpFormInvoke);
  38. this.tabControl1.Controls.Add(this.tpQueryUploadResult);
  39. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  40. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  41. this.tabControl1.Name = "tabControl1";
  42. this.tabControl1.SelectedIndex = 0;
  43. this.tabControl1.Size = new System.Drawing.Size(1097, 487);
  44. this.tabControl1.TabIndex = 1;
  45. //
  46. // tpFormInvoke
  47. //
  48. this.tpFormInvoke.Location = new System.Drawing.Point(4, 22);
  49. this.tpFormInvoke.Name = "tpFormInvoke";
  50. this.tpFormInvoke.Padding = new System.Windows.Forms.Padding(3);
  51. this.tpFormInvoke.Size = new System.Drawing.Size(1089, 461);
  52. this.tpFormInvoke.TabIndex = 0;
  53. this.tpFormInvoke.Text = "界面调用模拟";
  54. this.tpFormInvoke.UseVisualStyleBackColor = true;
  55. //
  56. // tpQueryUploadResult
  57. //
  58. this.tpQueryUploadResult.Location = new System.Drawing.Point(4, 22);
  59. this.tpQueryUploadResult.Name = "tpQueryUploadResult";
  60. this.tpQueryUploadResult.Padding = new System.Windows.Forms.Padding(3);
  61. this.tpQueryUploadResult.Size = new System.Drawing.Size(1089, 461);
  62. this.tpQueryUploadResult.TabIndex = 1;
  63. this.tpQueryUploadResult.Text = "查询";
  64. this.tpQueryUploadResult.UseVisualStyleBackColor = true;
  65. //
  66. // MainForm
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.ClientSize = new System.Drawing.Size(1097, 487);
  71. this.Controls.Add(this.tabControl1);
  72. this.Name = "MainForm";
  73. this.Text = "MainForm";
  74. this.tabControl1.ResumeLayout(false);
  75. this.ResumeLayout(false);
  76. }
  77. #endregion
  78. private System.Windows.Forms.TabControl tabControl1;
  79. private System.Windows.Forms.TabPage tpFormInvoke;
  80. private System.Windows.Forms.TabPage tpQueryUploadResult;
  81. }
  82. }