-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFormPatientEditP.Designer.cs
More file actions
102 lines (96 loc) · 3.54 KB
/
FormPatientEditP.Designer.cs
File metadata and controls
102 lines (96 loc) · 3.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
namespace PluginExample {
partial class FormPatientEditP {
/// <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.textPreferred = new System.Windows.Forms.TextBox();
this.butOK = new OpenDental.UI.Button();
this.butCancel = new OpenDental.UI.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(47,58);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100,18);
this.label1.TabIndex = 0;
this.label1.Text = "Preferred Name";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// textPreferred
//
this.textPreferred.Location = new System.Drawing.Point(148,57);
this.textPreferred.Name = "textPreferred";
this.textPreferred.Size = new System.Drawing.Size(143,20);
this.textPreferred.TabIndex = 1;
//
// butOK
//
this.butOK.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butOK.Autosize = true;
this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butOK.CornerRadius = 4F;
this.butOK.Location = new System.Drawing.Point(330,257);
this.butOK.Name = "butOK";
this.butOK.Size = new System.Drawing.Size(75,24);
this.butOK.TabIndex = 27;
this.butOK.Text = "&OK";
this.butOK.Click += new System.EventHandler(this.butOK_Click);
//
// butCancel
//
this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butCancel.Autosize = true;
this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butCancel.CornerRadius = 4F;
this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.butCancel.Location = new System.Drawing.Point(330,288);
this.butCancel.Name = "butCancel";
this.butCancel.Size = new System.Drawing.Size(75,24);
this.butCancel.TabIndex = 28;
this.butCancel.Text = "&Cancel";
this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
//
// FormPatientEdit
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F,13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(433,326);
this.Controls.Add(this.butCancel);
this.Controls.Add(this.butOK);
this.Controls.Add(this.textPreferred);
this.Controls.Add(this.label1);
this.Name = "FormPatientEdit";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Edit Patient";
this.Load += new System.EventHandler(this.FormPatientEdit_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textPreferred;
private OpenDental.UI.Button butOK;
private OpenDental.UI.Button butCancel;
}
}