117 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace WinApp
 | |
| {
 | |
| 	partial class frmUserSelect
 | |
| 	{
 | |
| 		/// <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.components = new System.ComponentModel.Container();
 | |
| 			this.lbUsers = new System.Windows.Forms.ListBox();
 | |
| 			this.userInfoListBindingSource = new System.Windows.Forms.BindingSource(this.components);
 | |
| 			this.panel1 = new System.Windows.Forms.Panel();
 | |
| 			this.btnCancel = new System.Windows.Forms.Button();
 | |
| 			this.btnOK = new System.Windows.Forms.Button();
 | |
| 			((System.ComponentModel.ISupportInitialize)(this.userInfoListBindingSource)).BeginInit();
 | |
| 			this.panel1.SuspendLayout();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// lbUsers
 | |
| 			// 
 | |
| 			this.lbUsers.DataSource = this.userInfoListBindingSource;
 | |
| 			this.lbUsers.DisplayMember = "FullName";
 | |
| 			this.lbUsers.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
| 			this.lbUsers.FormattingEnabled = true;
 | |
| 			this.lbUsers.ItemHeight = 16;
 | |
| 			this.lbUsers.Location = new System.Drawing.Point(0, 0);
 | |
| 			this.lbUsers.Name = "lbUsers";
 | |
| 			this.lbUsers.Size = new System.Drawing.Size(292, 228);
 | |
| 			this.lbUsers.TabIndex = 1;
 | |
| 			this.lbUsers.ValueMember = "Uid";
 | |
| 			// 
 | |
| 			// userInfoListBindingSource
 | |
| 			// 
 | |
| 			this.userInfoListBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.UserInfo);
 | |
| 			// 
 | |
| 			// panel1
 | |
| 			// 
 | |
| 			this.panel1.Controls.Add(this.btnCancel);
 | |
| 			this.panel1.Controls.Add(this.btnOK);
 | |
| 			this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
 | |
| 			this.panel1.Location = new System.Drawing.Point(0, 232);
 | |
| 			this.panel1.Name = "panel1";
 | |
| 			this.panel1.Size = new System.Drawing.Size(292, 28);
 | |
| 			this.panel1.TabIndex = 2;
 | |
| 			// 
 | |
| 			// btnCancel
 | |
| 			// 
 | |
| 			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 | |
| 			this.btnCancel.Dock = System.Windows.Forms.DockStyle.Left;
 | |
| 			this.btnCancel.Location = new System.Drawing.Point(73, 0);
 | |
| 			this.btnCancel.Name = "btnCancel";
 | |
| 			this.btnCancel.Size = new System.Drawing.Size(70, 28);
 | |
| 			this.btnCancel.TabIndex = 3;
 | |
| 			this.btnCancel.Text = "Cancel";
 | |
| 			this.btnCancel.UseVisualStyleBackColor = true;
 | |
| 			this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
 | |
| 			// 
 | |
| 			// btnOK
 | |
| 			// 
 | |
| 			this.btnOK.Dock = System.Windows.Forms.DockStyle.Left;
 | |
| 			this.btnOK.Location = new System.Drawing.Point(0, 0);
 | |
| 			this.btnOK.Name = "btnOK";
 | |
| 			this.btnOK.Size = new System.Drawing.Size(73, 28);
 | |
| 			this.btnOK.TabIndex = 2;
 | |
| 			this.btnOK.Text = "OK";
 | |
| 			this.btnOK.UseVisualStyleBackColor = true;
 | |
| 			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
 | |
| 			// 
 | |
| 			// frmUserSelect
 | |
| 			// 
 | |
| 			this.AcceptButton = this.btnOK;
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.CancelButton = this.btnCancel;
 | |
| 			this.ClientSize = new System.Drawing.Size(292, 260);
 | |
| 			this.Controls.Add(this.lbUsers);
 | |
| 			this.Controls.Add(this.panel1);
 | |
| 			this.Name = "frmUserSelect";
 | |
| 			this.Text = "Select User";
 | |
| 			this.Load += new System.EventHandler(this.frmUserSelect_Load);
 | |
| 			((System.ComponentModel.ISupportInitialize)(this.userInfoListBindingSource)).EndInit();
 | |
| 			this.panel1.ResumeLayout(false);
 | |
| 			this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.ListBox lbUsers;
 | |
| 		private System.Windows.Forms.BindingSource userInfoListBindingSource;
 | |
| 		private System.Windows.Forms.Panel panel1;
 | |
| 		private System.Windows.Forms.Button btnCancel;
 | |
| 		private System.Windows.Forms.Button btnOK;
 | |
| 	}
 | |
| } |