Show Provider.Designer.cs syntax highlighted
namespace DemoClientApp
{
partial class Provider
{
/// <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.label1 = new System.Windows.Forms.Label();
this.EMRDemo = new System.Windows.Forms.RadioButton();
this.PharmacyDemo = new System.Windows.Forms.RadioButton();
this.providerList = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(20, 25);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(80, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Provider Name:";
//
// EMRDemo
//
this.EMRDemo.Appearance = System.Windows.Forms.Appearance.Button;
this.EMRDemo.AutoSize = true;
this.EMRDemo.Location = new System.Drawing.Point(28, 73);
this.EMRDemo.Name = "EMRDemo";
this.EMRDemo.Size = new System.Drawing.Size(72, 23);
this.EMRDemo.TabIndex = 2;
this.EMRDemo.Text = "EMR Demo";
this.EMRDemo.UseVisualStyleBackColor = true;
this.EMRDemo.CheckedChanged += new System.EventHandler(this.button1_Click);
//
// PharmacyDemo
//
this.PharmacyDemo.Appearance = System.Windows.Forms.Appearance.Button;
this.PharmacyDemo.AutoSize = true;
this.PharmacyDemo.Location = new System.Drawing.Point(117, 73);
this.PharmacyDemo.Name = "PharmacyDemo";
this.PharmacyDemo.Size = new System.Drawing.Size(95, 23);
this.PharmacyDemo.TabIndex = 3;
this.PharmacyDemo.Text = "Pharmacy Demo";
this.PharmacyDemo.UseVisualStyleBackColor = true;
this.PharmacyDemo.CheckedChanged += new System.EventHandler(this.button1_Click);
//
// providerList
//
this.providerList.FormattingEnabled = true;
this.providerList.Items.AddRange(new object[] {
"Dr. Rankin Sethi",
"Dr. Kirklyn Saunderson",
"Sherma Swant",
"Ann Lynn Glynn"});
this.providerList.Location = new System.Drawing.Point(103, 22);
this.providerList.Name = "providerList";
this.providerList.Size = new System.Drawing.Size(121, 21);
this.providerList.TabIndex = 4;
//
// Provider
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(236, 111);
this.Controls.Add(this.providerList);
this.Controls.Add(this.PharmacyDemo);
this.Controls.Add(this.EMRDemo);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "Provider";
this.Text = "Provider";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.RadioButton EMRDemo;
private System.Windows.Forms.RadioButton PharmacyDemo;
private System.Windows.Forms.ComboBox providerList;
}
}
See more files for this project here