100 lines
4.5 KiB
C#
100 lines
4.5 KiB
C#
namespace PatientMan.Forms
|
|
{
|
|
partial class frmChildrenInfo
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChildrenInfo));
|
|
this.groupMother = new DevExpress.XtraEditors.GroupControl();
|
|
this.groupChidren = new DevExpress.XtraEditors.GroupControl();
|
|
this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
|
|
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
|
((System.ComponentModel.ISupportInitialize)(this.groupMother)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.groupChidren)).BeginInit();
|
|
this.groupChidren.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupMother
|
|
//
|
|
this.groupMother.CaptionImage = ((System.Drawing.Image)(resources.GetObject("groupMother.CaptionImage")));
|
|
this.groupMother.Location = new System.Drawing.Point(12, 7);
|
|
this.groupMother.Name = "groupMother";
|
|
this.groupMother.Size = new System.Drawing.Size(835, 100);
|
|
this.groupMother.TabIndex = 1;
|
|
this.groupMother.Text = "Mother Information";
|
|
//
|
|
// groupChidren
|
|
//
|
|
this.groupChidren.CaptionImage = ((System.Drawing.Image)(resources.GetObject("groupChidren.CaptionImage")));
|
|
this.groupChidren.Controls.Add(this.textEdit1);
|
|
this.groupChidren.Location = new System.Drawing.Point(12, 133);
|
|
this.groupChidren.Name = "groupChidren";
|
|
this.groupChidren.Size = new System.Drawing.Size(835, 285);
|
|
this.groupChidren.TabIndex = 2;
|
|
this.groupChidren.Text = "Children Information";
|
|
//
|
|
// textEdit1
|
|
//
|
|
this.textEdit1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource1, "ChildId", true));
|
|
this.textEdit1.Location = new System.Drawing.Point(181, 44);
|
|
this.textEdit1.Name = "textEdit1";
|
|
this.textEdit1.Size = new System.Drawing.Size(255, 20);
|
|
this.textEdit1.TabIndex = 0;
|
|
//
|
|
// bindingSource1
|
|
//
|
|
this.bindingSource1.DataSource = typeof(Datalib.EntityClasses.TblChildEntity);
|
|
//
|
|
// frmChildrenInfo
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.ClientSize = new System.Drawing.Size(859, 430);
|
|
this.Controls.Add(this.groupChidren);
|
|
this.Controls.Add(this.groupMother);
|
|
this.Name = "frmChildrenInfo";
|
|
this.Text = "Children Information";
|
|
((System.ComponentModel.ISupportInitialize)(this.groupMother)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.groupChidren)).EndInit();
|
|
this.groupChidren.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DevExpress.XtraEditors.GroupControl groupMother;
|
|
private DevExpress.XtraEditors.GroupControl groupChidren;
|
|
private DevExpress.XtraEditors.TextEdit textEdit1;
|
|
private System.Windows.Forms.BindingSource bindingSource1;
|
|
}
|
|
}
|