ab56a9bcf7
SVN-Revision: r240
143 lines
6.5 KiB
C#
143 lines
6.5 KiB
C#
namespace CsHospital
|
|
{
|
|
partial class WardSelec
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.gridControl1 = new DevExpress.XtraGrid.GridControl();
|
|
this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
|
|
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
|
|
this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
|
|
this.btn_Close = new DevExpress.XtraEditors.SimpleButton();
|
|
this.btn_add = new DevExpress.XtraEditors.SimpleButton();
|
|
this.groupBox1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
|
|
this.panelControl1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
|
|
this.panelControl2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.gridControl1);
|
|
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.groupBox1.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Bold);
|
|
this.groupBox1.Location = new System.Drawing.Point(2, 2);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(812, 303);
|
|
this.groupBox1.TabIndex = 0;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "病人住院情况";
|
|
//
|
|
// gridControl1
|
|
//
|
|
this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.gridControl1.Location = new System.Drawing.Point(3, 26);
|
|
this.gridControl1.MainView = this.gridView1;
|
|
this.gridControl1.Name = "gridControl1";
|
|
this.gridControl1.Size = new System.Drawing.Size(806, 274);
|
|
this.gridControl1.TabIndex = 0;
|
|
this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
|
|
this.gridView1});
|
|
//
|
|
// gridView1
|
|
//
|
|
this.gridView1.GridControl = this.gridControl1;
|
|
this.gridView1.Name = "gridView1";
|
|
this.gridView1.OptionsBehavior.Editable = false;
|
|
//
|
|
// panelControl1
|
|
//
|
|
this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
|
|
this.panelControl1.Controls.Add(this.groupBox1);
|
|
this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panelControl1.Location = new System.Drawing.Point(0, 0);
|
|
this.panelControl1.Name = "panelControl1";
|
|
this.panelControl1.Size = new System.Drawing.Size(816, 307);
|
|
this.panelControl1.TabIndex = 1;
|
|
//
|
|
// panelControl2
|
|
//
|
|
this.panelControl2.Controls.Add(this.btn_Close);
|
|
this.panelControl2.Controls.Add(this.btn_add);
|
|
this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panelControl2.Location = new System.Drawing.Point(0, 307);
|
|
this.panelControl2.Name = "panelControl2";
|
|
this.panelControl2.Size = new System.Drawing.Size(816, 52);
|
|
this.panelControl2.TabIndex = 2;
|
|
//
|
|
// btn_Close
|
|
//
|
|
this.btn_Close.Location = new System.Drawing.Point(729, 17);
|
|
this.btn_Close.Name = "btn_Close";
|
|
this.btn_Close.Size = new System.Drawing.Size(75, 23);
|
|
this.btn_Close.TabIndex = 0;
|
|
this.btn_Close.Text = "放弃";
|
|
//
|
|
// btn_add
|
|
//
|
|
this.btn_add.Location = new System.Drawing.Point(621, 17);
|
|
this.btn_add.Name = "btn_add";
|
|
this.btn_add.Size = new System.Drawing.Size(75, 23);
|
|
this.btn_add.TabIndex = 0;
|
|
this.btn_add.Text = "新增";
|
|
this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
|
|
//
|
|
// WardSelec
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(816, 359);
|
|
this.Controls.Add(this.panelControl2);
|
|
this.Controls.Add(this.panelControl1);
|
|
this.Name = "WardSelec";
|
|
this.Text = "WardSelec";
|
|
this.groupBox1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
|
|
this.panelControl1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
|
|
this.panelControl2.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private DevExpress.XtraGrid.GridControl gridControl1;
|
|
private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
|
|
private DevExpress.XtraEditors.PanelControl panelControl1;
|
|
private DevExpress.XtraEditors.PanelControl panelControl2;
|
|
private DevExpress.XtraEditors.SimpleButton btn_Close;
|
|
private DevExpress.XtraEditors.SimpleButton btn_add;
|
|
}
|
|
} |