EditRoleForm.Designer.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. namespace Session_4
  2. {
  3. partial class EditRoleForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditRoleForm));
  30. this.cancel_button = new System.Windows.Forms.Button();
  31. this.save_button = new System.Windows.Forms.Button();
  32. this.officebox_text = new System.Windows.Forms.ComboBox();
  33. this.lastname_text = new System.Windows.Forms.TextBox();
  34. this.firstname_text = new System.Windows.Forms.TextBox();
  35. this.email_text = new System.Windows.Forms.TextBox();
  36. this.label5 = new System.Windows.Forms.Label();
  37. this.label4 = new System.Windows.Forms.Label();
  38. this.label3 = new System.Windows.Forms.Label();
  39. this.label2 = new System.Windows.Forms.Label();
  40. this.label1 = new System.Windows.Forms.Label();
  41. this.radioButton1 = new System.Windows.Forms.RadioButton();
  42. this.radioButton2 = new System.Windows.Forms.RadioButton();
  43. this.session3_4DataSet = new Session_4.Session3_4DataSet();
  44. this.officesBindingSource = new System.Windows.Forms.BindingSource(this.components);
  45. this.officesTableAdapter = new Session_4.Session3_4DataSetTableAdapters.OfficesTableAdapter();
  46. ((System.ComponentModel.ISupportInitialize)(this.session3_4DataSet)).BeginInit();
  47. ((System.ComponentModel.ISupportInitialize)(this.officesBindingSource)).BeginInit();
  48. this.SuspendLayout();
  49. //
  50. // cancel_button
  51. //
  52. resources.ApplyResources(this.cancel_button, "cancel_button");
  53. this.cancel_button.Name = "cancel_button";
  54. this.cancel_button.UseVisualStyleBackColor = true;
  55. this.cancel_button.Click += new System.EventHandler(this.cancel_button_Click);
  56. //
  57. // save_button
  58. //
  59. this.save_button.DialogResult = System.Windows.Forms.DialogResult.OK;
  60. resources.ApplyResources(this.save_button, "save_button");
  61. this.save_button.Name = "save_button";
  62. this.save_button.UseVisualStyleBackColor = true;
  63. this.save_button.Click += new System.EventHandler(this.save_button_Click);
  64. //
  65. // officebox_text
  66. //
  67. this.officebox_text.DataSource = this.officesBindingSource;
  68. this.officebox_text.DisplayMember = "Title";
  69. resources.ApplyResources(this.officebox_text, "officebox_text");
  70. this.officebox_text.FormattingEnabled = true;
  71. this.officebox_text.Name = "officebox_text";
  72. this.officebox_text.ValueMember = "ID";
  73. //
  74. // lastname_text
  75. //
  76. resources.ApplyResources(this.lastname_text, "lastname_text");
  77. this.lastname_text.Name = "lastname_text";
  78. //
  79. // firstname_text
  80. //
  81. resources.ApplyResources(this.firstname_text, "firstname_text");
  82. this.firstname_text.Name = "firstname_text";
  83. //
  84. // email_text
  85. //
  86. resources.ApplyResources(this.email_text, "email_text");
  87. this.email_text.Name = "email_text";
  88. //
  89. // label5
  90. //
  91. resources.ApplyResources(this.label5, "label5");
  92. this.label5.Name = "label5";
  93. //
  94. // label4
  95. //
  96. resources.ApplyResources(this.label4, "label4");
  97. this.label4.Name = "label4";
  98. //
  99. // label3
  100. //
  101. resources.ApplyResources(this.label3, "label3");
  102. this.label3.Name = "label3";
  103. //
  104. // label2
  105. //
  106. resources.ApplyResources(this.label2, "label2");
  107. this.label2.Name = "label2";
  108. //
  109. // label1
  110. //
  111. resources.ApplyResources(this.label1, "label1");
  112. this.label1.Name = "label1";
  113. //
  114. // radioButton1
  115. //
  116. resources.ApplyResources(this.radioButton1, "radioButton1");
  117. this.radioButton1.Name = "radioButton1";
  118. this.radioButton1.TabStop = true;
  119. this.radioButton1.UseVisualStyleBackColor = true;
  120. //
  121. // radioButton2
  122. //
  123. resources.ApplyResources(this.radioButton2, "radioButton2");
  124. this.radioButton2.Name = "radioButton2";
  125. this.radioButton2.TabStop = true;
  126. this.radioButton2.UseVisualStyleBackColor = true;
  127. //
  128. // session3_4DataSet
  129. //
  130. this.session3_4DataSet.DataSetName = "Session3_4DataSet";
  131. this.session3_4DataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  132. //
  133. // officesBindingSource
  134. //
  135. this.officesBindingSource.DataMember = "Offices";
  136. this.officesBindingSource.DataSource = this.session3_4DataSet;
  137. //
  138. // officesTableAdapter
  139. //
  140. this.officesTableAdapter.ClearBeforeFill = true;
  141. //
  142. // EditRoleForm
  143. //
  144. resources.ApplyResources(this, "$this");
  145. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  146. this.ControlBox = false;
  147. this.Controls.Add(this.radioButton2);
  148. this.Controls.Add(this.radioButton1);
  149. this.Controls.Add(this.cancel_button);
  150. this.Controls.Add(this.save_button);
  151. this.Controls.Add(this.officebox_text);
  152. this.Controls.Add(this.lastname_text);
  153. this.Controls.Add(this.firstname_text);
  154. this.Controls.Add(this.email_text);
  155. this.Controls.Add(this.label5);
  156. this.Controls.Add(this.label4);
  157. this.Controls.Add(this.label3);
  158. this.Controls.Add(this.label2);
  159. this.Controls.Add(this.label1);
  160. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  161. this.MaximizeBox = false;
  162. this.MinimizeBox = false;
  163. this.Name = "EditRoleForm";
  164. this.ShowIcon = false;
  165. this.Load += new System.EventHandler(this.EditRoleForm_Load);
  166. ((System.ComponentModel.ISupportInitialize)(this.session3_4DataSet)).EndInit();
  167. ((System.ComponentModel.ISupportInitialize)(this.officesBindingSource)).EndInit();
  168. this.ResumeLayout(false);
  169. this.PerformLayout();
  170. }
  171. #endregion
  172. public System.Windows.Forms.Button cancel_button;
  173. public System.Windows.Forms.Button save_button;
  174. public System.Windows.Forms.ComboBox officebox_text;
  175. public System.Windows.Forms.TextBox lastname_text;
  176. public System.Windows.Forms.TextBox firstname_text;
  177. public System.Windows.Forms.TextBox email_text;
  178. public System.Windows.Forms.Label label5;
  179. public System.Windows.Forms.Label label4;
  180. public System.Windows.Forms.Label label3;
  181. public System.Windows.Forms.Label label2;
  182. public System.Windows.Forms.Label label1;
  183. public System.Windows.Forms.RadioButton radioButton1;
  184. public System.Windows.Forms.RadioButton radioButton2;
  185. private Session3_4DataSet session3_4DataSet;
  186. private System.Windows.Forms.BindingSource officesBindingSource;
  187. private Session3_4DataSetTableAdapters.OfficesTableAdapter officesTableAdapter;
  188. }
  189. }