145 lines
5.3 KiB
C#
145 lines
5.3 KiB
C#
namespace TBF.Forms
|
|
{
|
|
partial class EditSelectedUser
|
|
{
|
|
/// <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();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditSelectedUser));
|
|
this.txtName = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.txtPassword = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.txtDescription = new System.Windows.Forms.TextBox();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.checkedListBoxGroups = new System.Windows.Forms.CheckedListBox();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// txtName
|
|
//
|
|
resources.ApplyResources(this.txtName, "txtName");
|
|
this.txtName.Name = "txtName";
|
|
this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
|
|
this.txtName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtName_KeyPress);
|
|
this.txtName.Validated += new System.EventHandler(this.txtName_Validated);
|
|
//
|
|
// label1
|
|
//
|
|
resources.ApplyResources(this.label1, "label1");
|
|
this.label1.Name = "label1";
|
|
//
|
|
// btnOk
|
|
//
|
|
resources.ApplyResources(this.btnOk, "btnOk");
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
resources.ApplyResources(this.btnCancel, "btnCancel");
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// txtPassword
|
|
//
|
|
resources.ApplyResources(this.txtPassword, "txtPassword");
|
|
this.txtPassword.Name = "txtPassword";
|
|
this.txtPassword.TextChanged += new System.EventHandler(this.txtPassword_TextChanged);
|
|
//
|
|
// label3
|
|
//
|
|
resources.ApplyResources(this.label3, "label3");
|
|
this.label3.Name = "label3";
|
|
//
|
|
// txtDescription
|
|
//
|
|
resources.ApplyResources(this.txtDescription, "txtDescription");
|
|
this.txtDescription.Name = "txtDescription";
|
|
this.txtDescription.TextChanged += new System.EventHandler(this.txtDescription_TextChanged);
|
|
this.txtDescription.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtDescription_KeyPress);
|
|
//
|
|
// label4
|
|
//
|
|
resources.ApplyResources(this.label4, "label4");
|
|
this.label4.Name = "label4";
|
|
//
|
|
// checkedListBoxGroups
|
|
//
|
|
this.checkedListBoxGroups.CheckOnClick = true;
|
|
this.checkedListBoxGroups.FormattingEnabled = true;
|
|
resources.ApplyResources(this.checkedListBoxGroups, "checkedListBoxGroups");
|
|
this.checkedListBoxGroups.Name = "checkedListBoxGroups";
|
|
this.checkedListBoxGroups.Click += new System.EventHandler(this.checkedListBoxGroups_Click);
|
|
//
|
|
// label5
|
|
//
|
|
resources.ApplyResources(this.label5, "label5");
|
|
this.label5.Name = "label5";
|
|
//
|
|
// EditSelectedUser
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.label5);
|
|
this.Controls.Add(this.checkedListBoxGroups);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnOk);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.txtDescription);
|
|
this.Controls.Add(this.txtPassword);
|
|
this.Controls.Add(this.txtName);
|
|
this.Name = "EditSelectedUser";
|
|
this.Load += new System.EventHandler(this.EditSelectedUser_Load);
|
|
this.Shown += new System.EventHandler(this.EditSelectedUser_Shown);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox txtName;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btnOk;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.TextBox txtPassword;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.TextBox txtDescription;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.CheckedListBox checkedListBoxGroups;
|
|
private System.Windows.Forms.Label label5;
|
|
private System.Windows.Forms.ToolTip toolTip1;
|
|
}
|
|
} |