source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet.WinForm/Forms/ChangeDivisionDialog.designer.cs@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 4.9 KB
Line 
1namespace IndianHealthService.BMXNet.Forms
2{
3 partial class ChangeDivisionDialog
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.okButton = new System.Windows.Forms.Button();
32 this.label1 = new System.Windows.Forms.Label();
33 this.divisionList = new System.Windows.Forms.ListBox();
34 this.cancelButton = new System.Windows.Forms.Button();
35 this.SuspendLayout();
36 //
37 // okButton
38 //
39 this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
40 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
41 this.okButton.Location = new System.Drawing.Point(229, 158);
42 this.okButton.Name = "okButton";
43 this.okButton.Size = new System.Drawing.Size(77, 24);
44 this.okButton.TabIndex = 1;
45 this.okButton.Text = "OK";
46 this.okButton.Click += new System.EventHandler(this.okButton_Click);
47 //
48 // label1
49 //
50 this.label1.Location = new System.Drawing.Point(9, 9);
51 this.label1.Name = "label1";
52 this.label1.Size = new System.Drawing.Size(240, 16);
53 this.label1.TabIndex = 14;
54 this.label1.Text = "Select Division:";
55 //
56 // divisionList
57 //
58 this.divisionList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59 | System.Windows.Forms.AnchorStyles.Left)
60 | System.Windows.Forms.AnchorStyles.Right)));
61 this.divisionList.Location = new System.Drawing.Point(12, 28);
62 this.divisionList.Name = "divisionList";
63 this.divisionList.Size = new System.Drawing.Size(385, 121);
64 this.divisionList.TabIndex = 0;
65 this.divisionList.SelectedIndexChanged += new System.EventHandler(this.divisionList_SelectedIndexChanged);
66 this.divisionList.DoubleClick += new System.EventHandler(this.divisionList_DoubleClick);
67 //
68 // cancelButton
69 //
70 this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
71 this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
72 this.cancelButton.Location = new System.Drawing.Point(312, 158);
73 this.cancelButton.Name = "cancelButton";
74 this.cancelButton.Size = new System.Drawing.Size(77, 24);
75 this.cancelButton.TabIndex = 2;
76 this.cancelButton.Text = "Cancel";
77 this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
78 //
79 // ChangeDivisionDialog
80 //
81 this.AcceptButton = this.okButton;
82 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
83 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
84 this.CancelButton = this.cancelButton;
85 this.ClientSize = new System.Drawing.Size(407, 194);
86 this.ControlBox = false;
87 this.Controls.Add(this.okButton);
88 this.Controls.Add(this.label1);
89 this.Controls.Add(this.divisionList);
90 this.Controls.Add(this.cancelButton);
91 this.Name = "ChangeDivisionDialog";
92 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
93 this.Text = "Change Division";
94 this.Load += new System.EventHandler(this.ChangeDivisionDialog_Load);
95 this.ResumeLayout(false);
96
97 }
98
99 #endregion
100
101 private System.Windows.Forms.Button okButton;
102 private System.Windows.Forms.Label label1;
103 private System.Windows.Forms.ListBox divisionList;
104 private System.Windows.Forms.Button cancelButton;
105 }
106}
Note: See TracBrowser for help on using the repository browser.