using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace IndianHealthService.BMXNet.Tools.SchemaBuilder { /// /// Summary description for DSaveSchema. /// public class DSaveSchema : System.Windows.Forms.Form { private System.Windows.Forms.Panel pnlPageBottom; private System.Windows.Forms.Button cmdCancel; private System.Windows.Forms.Button cmdOK; private System.Windows.Forms.Panel pnlDescription; private System.Windows.Forms.GroupBox grpDescriptionResourceGroup; private System.Windows.Forms.Label lblDescriptionResourceGroup; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtSchemaName; private System.Windows.Forms.CheckBox chkReadOnly; /// /// Required designer variable. /// private System.ComponentModel.Container components = null; public DSaveSchema() { InitializeComponent(); } #region Methods /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } public void InitializePage() { UpdateDialogData(true); } private void UpdateDialogData(bool b) { if (b == true) //Move data from member variables to dialog controls { this.txtSchemaName.Text = m_sSchemaName; this.chkReadOnly.Checked = m_bReadOnly; } else //Move data to member variables from dialog controls { m_sSchemaName = this.txtSchemaName.Text; m_bReadOnly = this.chkReadOnly.Checked; } } private void cmdOK_Click(object sender, System.EventArgs e) { UpdateDialogData(false); } #endregion Methods #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.pnlPageBottom = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdOK = new System.Windows.Forms.Button(); this.pnlDescription = new System.Windows.Forms.Panel(); this.grpDescriptionResourceGroup = new System.Windows.Forms.GroupBox(); this.lblDescriptionResourceGroup = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.txtSchemaName = new System.Windows.Forms.TextBox(); this.chkReadOnly = new System.Windows.Forms.CheckBox(); this.pnlPageBottom.SuspendLayout(); this.pnlDescription.SuspendLayout(); this.grpDescriptionResourceGroup.SuspendLayout(); this.SuspendLayout(); // // pnlPageBottom // this.pnlPageBottom.Controls.Add(this.cmdCancel); this.pnlPageBottom.Controls.Add(this.cmdOK); this.pnlPageBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlPageBottom.Location = new System.Drawing.Point(0, 155); this.pnlPageBottom.Name = "pnlPageBottom"; this.pnlPageBottom.Size = new System.Drawing.Size(418, 40); this.pnlPageBottom.TabIndex = 7; // // cmdCancel // this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cmdCancel.Location = new System.Drawing.Point(340, 8); this.cmdCancel.Name = "cmdCancel"; this.cmdCancel.Size = new System.Drawing.Size(66, 24); this.cmdCancel.TabIndex = 2; this.cmdCancel.Text = "Cancel"; // // cmdOK // this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK; this.cmdOK.Location = new System.Drawing.Point(263, 8); this.cmdOK.Name = "cmdOK"; this.cmdOK.Size = new System.Drawing.Size(71, 24); this.cmdOK.TabIndex = 1; this.cmdOK.Text = "OK"; this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click); // // pnlDescription // this.pnlDescription.Controls.Add(this.grpDescriptionResourceGroup); this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlDescription.Location = new System.Drawing.Point(0, 83); this.pnlDescription.Name = "pnlDescription"; this.pnlDescription.Size = new System.Drawing.Size(418, 72); this.pnlDescription.TabIndex = 8; // // grpDescriptionResourceGroup // this.grpDescriptionResourceGroup.Controls.Add(this.lblDescriptionResourceGroup); this.grpDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; this.grpDescriptionResourceGroup.Location = new System.Drawing.Point(0, 0); this.grpDescriptionResourceGroup.Name = "grpDescriptionResourceGroup"; this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(418, 72); this.grpDescriptionResourceGroup.TabIndex = 1; this.grpDescriptionResourceGroup.TabStop = false; this.grpDescriptionResourceGroup.Text = "Description"; // // lblDescriptionResourceGroup // this.lblDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Fill; this.lblDescriptionResourceGroup.Location = new System.Drawing.Point(3, 16); this.lblDescriptionResourceGroup.Name = "lblDescriptionResourceGroup"; this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(412, 53); this.lblDescriptionResourceGroup.TabIndex = 0; this.lblDescriptionResourceGroup.Text = "Use this panel to save a schema. The schema must have a unique name. If the sch" + "ema will not be used to update data, then check the \'DataSet is Read-Only\' box."; // // label1 // this.label1.Location = new System.Drawing.Point(12, 13); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(104, 16); this.label1.TabIndex = 9; this.label1.Text = "Schema Name:"; // // txtSchemaName // this.txtSchemaName.Location = new System.Drawing.Point(93, 10); this.txtSchemaName.Name = "txtSchemaName"; this.txtSchemaName.Size = new System.Drawing.Size(272, 20); this.txtSchemaName.TabIndex = 10; // // chkReadOnly // this.chkReadOnly.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.chkReadOnly.Location = new System.Drawing.Point(93, 32); this.chkReadOnly.Name = "chkReadOnly"; this.chkReadOnly.RightToLeft = System.Windows.Forms.RightToLeft.Yes; this.chkReadOnly.Size = new System.Drawing.Size(136, 24); this.chkReadOnly.TabIndex = 11; this.chkReadOnly.Text = "DataSet is Read-Only"; // // DSaveSchema // this.AcceptButton = this.cmdOK; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.cmdCancel; this.ClientSize = new System.Drawing.Size(418, 195); this.ControlBox = false; this.Controls.Add(this.chkReadOnly); this.Controls.Add(this.txtSchemaName); this.Controls.Add(this.label1); this.Controls.Add(this.pnlDescription); this.Controls.Add(this.pnlPageBottom); this.Name = "DSaveSchema"; this.Text = "Save Schema"; this.pnlPageBottom.ResumeLayout(false); this.pnlDescription.ResumeLayout(false); this.grpDescriptionResourceGroup.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion #region Fields private string m_sSchemaName = ""; private bool m_bReadOnly = false; #endregion Fields #region Properties public string SchemaName { get { return m_sSchemaName; } set { m_sSchemaName = value; } } public bool ReadOnly { get { return m_bReadOnly; } set { m_bReadOnly = value; } } #endregion Properties } }