Form2.Designer.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. 
  2. namespace AMONIC_Airlines
  3. {
  4. partial class Form2
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  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. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
  31. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  32. this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
  33. this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
  34. this.label1 = new System.Windows.Forms.Label();
  35. this.comboBox1 = new System.Windows.Forms.ComboBox();
  36. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  37. this.session_8DataSet = new AMONIC_Airlines.Session_8DataSet();
  38. this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
  39. this.usersTableAdapter = new AMONIC_Airlines.Session_8DataSetTableAdapters.UsersTableAdapter();
  40. this.iDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.roleIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.emailDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  43. this.passwordDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  44. this.firstNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  45. this.lastNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  46. this.officeIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  47. this.birthdateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  48. this.activeDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  49. this.button1 = new System.Windows.Forms.Button();
  50. this.button2 = new System.Windows.Forms.Button();
  51. this.toolStrip1.SuspendLayout();
  52. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  53. ((System.ComponentModel.ISupportInitialize)(this.session_8DataSet)).BeginInit();
  54. ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
  55. this.SuspendLayout();
  56. //
  57. // toolStrip1
  58. //
  59. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  60. this.toolStripButton1,
  61. this.toolStripButton2});
  62. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  63. this.toolStrip1.Name = "toolStrip1";
  64. this.toolStrip1.Size = new System.Drawing.Size(1007, 25);
  65. this.toolStrip1.TabIndex = 0;
  66. this.toolStrip1.Text = "toolStrip1";
  67. //
  68. // toolStripButton1
  69. //
  70. this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  71. this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
  72. this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  73. this.toolStripButton1.Name = "toolStripButton1";
  74. this.toolStripButton1.Size = new System.Drawing.Size(58, 22);
  75. this.toolStripButton1.Text = "Add user";
  76. this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
  77. //
  78. // toolStripButton2
  79. //
  80. this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  81. this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
  82. this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
  83. this.toolStripButton2.Name = "toolStripButton2";
  84. this.toolStripButton2.Size = new System.Drawing.Size(30, 22);
  85. this.toolStripButton2.Text = "exit";
  86. this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
  87. //
  88. // label1
  89. //
  90. this.label1.AutoSize = true;
  91. this.label1.Location = new System.Drawing.Point(13, 29);
  92. this.label1.Name = "label1";
  93. this.label1.Size = new System.Drawing.Size(38, 13);
  94. this.label1.TabIndex = 1;
  95. this.label1.Text = "Office:";
  96. //
  97. // comboBox1
  98. //
  99. this.comboBox1.FormattingEnabled = true;
  100. this.comboBox1.Location = new System.Drawing.Point(77, 29);
  101. this.comboBox1.Name = "comboBox1";
  102. this.comboBox1.Size = new System.Drawing.Size(121, 21);
  103. this.comboBox1.TabIndex = 2;
  104. //
  105. // dataGridView1
  106. //
  107. this.dataGridView1.AutoGenerateColumns = false;
  108. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  109. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  110. this.iDDataGridViewTextBoxColumn,
  111. this.roleIDDataGridViewTextBoxColumn,
  112. this.emailDataGridViewTextBoxColumn,
  113. this.passwordDataGridViewTextBoxColumn,
  114. this.firstNameDataGridViewTextBoxColumn,
  115. this.lastNameDataGridViewTextBoxColumn,
  116. this.officeIDDataGridViewTextBoxColumn,
  117. this.birthdateDataGridViewTextBoxColumn,
  118. this.activeDataGridViewCheckBoxColumn});
  119. this.dataGridView1.DataSource = this.usersBindingSource;
  120. this.dataGridView1.Location = new System.Drawing.Point(0, 56);
  121. this.dataGridView1.Name = "dataGridView1";
  122. this.dataGridView1.Size = new System.Drawing.Size(945, 264);
  123. this.dataGridView1.TabIndex = 3;
  124. //
  125. // session_8DataSet
  126. //
  127. this.session_8DataSet.DataSetName = "Session_8DataSet";
  128. this.session_8DataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  129. //
  130. // usersBindingSource
  131. //
  132. this.usersBindingSource.DataMember = "Users";
  133. this.usersBindingSource.DataSource = this.session_8DataSet;
  134. //
  135. // usersTableAdapter
  136. //
  137. this.usersTableAdapter.ClearBeforeFill = true;
  138. //
  139. // iDDataGridViewTextBoxColumn
  140. //
  141. this.iDDataGridViewTextBoxColumn.DataPropertyName = "ID";
  142. this.iDDataGridViewTextBoxColumn.HeaderText = "ID";
  143. this.iDDataGridViewTextBoxColumn.Name = "iDDataGridViewTextBoxColumn";
  144. //
  145. // roleIDDataGridViewTextBoxColumn
  146. //
  147. this.roleIDDataGridViewTextBoxColumn.DataPropertyName = "RoleID";
  148. this.roleIDDataGridViewTextBoxColumn.HeaderText = "RoleID";
  149. this.roleIDDataGridViewTextBoxColumn.Name = "roleIDDataGridViewTextBoxColumn";
  150. //
  151. // emailDataGridViewTextBoxColumn
  152. //
  153. this.emailDataGridViewTextBoxColumn.DataPropertyName = "Email";
  154. this.emailDataGridViewTextBoxColumn.HeaderText = "Email";
  155. this.emailDataGridViewTextBoxColumn.Name = "emailDataGridViewTextBoxColumn";
  156. //
  157. // passwordDataGridViewTextBoxColumn
  158. //
  159. this.passwordDataGridViewTextBoxColumn.DataPropertyName = "Password";
  160. this.passwordDataGridViewTextBoxColumn.HeaderText = "Password";
  161. this.passwordDataGridViewTextBoxColumn.Name = "passwordDataGridViewTextBoxColumn";
  162. //
  163. // firstNameDataGridViewTextBoxColumn
  164. //
  165. this.firstNameDataGridViewTextBoxColumn.DataPropertyName = "FirstName";
  166. this.firstNameDataGridViewTextBoxColumn.HeaderText = "FirstName";
  167. this.firstNameDataGridViewTextBoxColumn.Name = "firstNameDataGridViewTextBoxColumn";
  168. //
  169. // lastNameDataGridViewTextBoxColumn
  170. //
  171. this.lastNameDataGridViewTextBoxColumn.DataPropertyName = "LastName";
  172. this.lastNameDataGridViewTextBoxColumn.HeaderText = "LastName";
  173. this.lastNameDataGridViewTextBoxColumn.Name = "lastNameDataGridViewTextBoxColumn";
  174. //
  175. // officeIDDataGridViewTextBoxColumn
  176. //
  177. this.officeIDDataGridViewTextBoxColumn.DataPropertyName = "OfficeID";
  178. this.officeIDDataGridViewTextBoxColumn.HeaderText = "OfficeID";
  179. this.officeIDDataGridViewTextBoxColumn.Name = "officeIDDataGridViewTextBoxColumn";
  180. //
  181. // birthdateDataGridViewTextBoxColumn
  182. //
  183. this.birthdateDataGridViewTextBoxColumn.DataPropertyName = "Birthdate";
  184. this.birthdateDataGridViewTextBoxColumn.HeaderText = "Birthdate";
  185. this.birthdateDataGridViewTextBoxColumn.Name = "birthdateDataGridViewTextBoxColumn";
  186. //
  187. // activeDataGridViewCheckBoxColumn
  188. //
  189. this.activeDataGridViewCheckBoxColumn.DataPropertyName = "Active";
  190. this.activeDataGridViewCheckBoxColumn.HeaderText = "Active";
  191. this.activeDataGridViewCheckBoxColumn.Name = "activeDataGridViewCheckBoxColumn";
  192. //
  193. // button1
  194. //
  195. this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(214)))), ((int)(((byte)(136)))));
  196. this.button1.Font = new System.Drawing.Font("Verdana", 11.25F);
  197. this.button1.Location = new System.Drawing.Point(77, 379);
  198. this.button1.Name = "button1";
  199. this.button1.Size = new System.Drawing.Size(146, 32);
  200. this.button1.TabIndex = 4;
  201. this.button1.Text = "изменгение роли";
  202. this.button1.UseVisualStyleBackColor = false;
  203. //
  204. // button2
  205. //
  206. this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(214)))), ((int)(((byte)(136)))));
  207. this.button2.Font = new System.Drawing.Font("Verdana", 11.25F);
  208. this.button2.Location = new System.Drawing.Point(254, 379);
  209. this.button2.Name = "button2";
  210. this.button2.Size = new System.Drawing.Size(181, 32);
  211. this.button2.TabIndex = 5;
  212. this.button2.Text = "показать скрыть пароль";
  213. this.button2.UseVisualStyleBackColor = false;
  214. this.button2.Click += new System.EventHandler(this.button2_Click);
  215. //
  216. // Form2
  217. //
  218. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  219. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  220. this.ClientSize = new System.Drawing.Size(1007, 450);
  221. this.Controls.Add(this.button2);
  222. this.Controls.Add(this.button1);
  223. this.Controls.Add(this.dataGridView1);
  224. this.Controls.Add(this.comboBox1);
  225. this.Controls.Add(this.label1);
  226. this.Controls.Add(this.toolStrip1);
  227. this.Name = "Form2";
  228. this.Text = "Form2";
  229. this.Load += new System.EventHandler(this.Form2_Load);
  230. this.toolStrip1.ResumeLayout(false);
  231. this.toolStrip1.PerformLayout();
  232. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  233. ((System.ComponentModel.ISupportInitialize)(this.session_8DataSet)).EndInit();
  234. ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
  235. this.ResumeLayout(false);
  236. this.PerformLayout();
  237. }
  238. #endregion
  239. private System.Windows.Forms.ToolStrip toolStrip1;
  240. private System.Windows.Forms.ToolStripButton toolStripButton1;
  241. private System.Windows.Forms.ToolStripButton toolStripButton2;
  242. private System.Windows.Forms.Label label1;
  243. private System.Windows.Forms.ComboBox comboBox1;
  244. private System.Windows.Forms.DataGridView dataGridView1;
  245. private Session_8DataSet session_8DataSet;
  246. private System.Windows.Forms.BindingSource usersBindingSource;
  247. private Session_8DataSetTableAdapters.UsersTableAdapter usersTableAdapter;
  248. private System.Windows.Forms.DataGridViewTextBoxColumn iDDataGridViewTextBoxColumn;
  249. private System.Windows.Forms.DataGridViewTextBoxColumn roleIDDataGridViewTextBoxColumn;
  250. private System.Windows.Forms.DataGridViewTextBoxColumn emailDataGridViewTextBoxColumn;
  251. private System.Windows.Forms.DataGridViewTextBoxColumn passwordDataGridViewTextBoxColumn;
  252. private System.Windows.Forms.DataGridViewTextBoxColumn firstNameDataGridViewTextBoxColumn;
  253. private System.Windows.Forms.DataGridViewTextBoxColumn lastNameDataGridViewTextBoxColumn;
  254. private System.Windows.Forms.DataGridViewTextBoxColumn officeIDDataGridViewTextBoxColumn;
  255. private System.Windows.Forms.DataGridViewTextBoxColumn birthdateDataGridViewTextBoxColumn;
  256. private System.Windows.Forms.DataGridViewCheckBoxColumn activeDataGridViewCheckBoxColumn;
  257. private System.Windows.Forms.Button button1;
  258. private System.Windows.Forms.Button button2;
  259. }
  260. }