FeeDetail.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. 
  2. namespace PTMedicalInsurance.Business.Core.Forms.DischargeAudit
  3. {
  4. partial class FeeDetail
  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.panel3 = new System.Windows.Forms.Panel();
  30. this.btUploadFee = new System.Windows.Forms.Button();
  31. this.btGetFee = new System.Windows.Forms.Button();
  32. this.dgvFeeDetail = new System.Windows.Forms.DataGridView();
  33. this.panel3.SuspendLayout();
  34. ((System.ComponentModel.ISupportInitialize)(this.dgvFeeDetail)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // panel3
  38. //
  39. this.panel3.BackColor = System.Drawing.SystemColors.Window;
  40. this.panel3.Controls.Add(this.btUploadFee);
  41. this.panel3.Controls.Add(this.btGetFee);
  42. this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
  43. this.panel3.Location = new System.Drawing.Point(0, 408);
  44. this.panel3.Name = "panel3";
  45. this.panel3.Size = new System.Drawing.Size(1142, 62);
  46. this.panel3.TabIndex = 17;
  47. //
  48. // btUploadFee
  49. //
  50. this.btUploadFee.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  51. this.btUploadFee.Font = new System.Drawing.Font("新宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  52. this.btUploadFee.Location = new System.Drawing.Point(939, 11);
  53. this.btUploadFee.Name = "btUploadFee";
  54. this.btUploadFee.Size = new System.Drawing.Size(166, 39);
  55. this.btUploadFee.TabIndex = 5;
  56. this.btUploadFee.Text = "上传费用明细";
  57. this.btUploadFee.UseVisualStyleBackColor = true;
  58. this.btUploadFee.Click += new System.EventHandler(this.btUploadFee_Click);
  59. //
  60. // btGetFee
  61. //
  62. this.btGetFee.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  63. this.btGetFee.Font = new System.Drawing.Font("新宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  64. this.btGetFee.Location = new System.Drawing.Point(743, 11);
  65. this.btGetFee.Name = "btGetFee";
  66. this.btGetFee.Size = new System.Drawing.Size(166, 39);
  67. this.btGetFee.TabIndex = 3;
  68. this.btGetFee.Text = "查询费用明细";
  69. this.btGetFee.UseVisualStyleBackColor = true;
  70. this.btGetFee.Click += new System.EventHandler(this.btGetFee_Click);
  71. //
  72. // dgvFeeDetail
  73. //
  74. this.dgvFeeDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  75. this.dgvFeeDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  76. this.dgvFeeDetail.Location = new System.Drawing.Point(0, 0);
  77. this.dgvFeeDetail.Name = "dgvFeeDetail";
  78. this.dgvFeeDetail.RowTemplate.Height = 23;
  79. this.dgvFeeDetail.Size = new System.Drawing.Size(1142, 408);
  80. this.dgvFeeDetail.TabIndex = 18;
  81. //
  82. // FeeDetail
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.ClientSize = new System.Drawing.Size(1142, 470);
  87. this.Controls.Add(this.dgvFeeDetail);
  88. this.Controls.Add(this.panel3);
  89. this.Name = "FeeDetail";
  90. this.Text = "FeeDetail";
  91. this.panel3.ResumeLayout(false);
  92. ((System.ComponentModel.ISupportInitialize)(this.dgvFeeDetail)).EndInit();
  93. this.ResumeLayout(false);
  94. }
  95. #endregion
  96. private System.Windows.Forms.Panel panel3;
  97. private System.Windows.Forms.Button btGetFee;
  98. private System.Windows.Forms.DataGridView dgvFeeDetail;
  99. private System.Windows.Forms.Button btUploadFee;
  100. }
  101. }