tbf/SharedDatabase/Forms/PasswordChangeDlg.Designer.cs

147 lines
6.6 KiB
C#
Raw Permalink Normal View History

///
/// Copyright (c) 2019 Sensus Slovensko a.s.
///
namespace SharedDatabase.Forms
{
partial class PasswordChangeDlg
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PasswordChangeDlg));
this.userNameLabel = new System.Windows.Forms.Label();
this.oldPasswLabel = new System.Windows.Forms.Label();
this.oldPasswTextBox = new System.Windows.Forms.TextBox();
this.cancelButton = new System.Windows.Forms.Button();
this.okButton = new System.Windows.Forms.Button();
this.userNameTextBox = new System.Windows.Forms.TextBox();
this.newPasswTextBox = new System.Windows.Forms.TextBox();
this.newPasswVerifTextBox = new System.Windows.Forms.TextBox();
this.newPasswLabel = new System.Windows.Forms.Label();
this.newPasswVerifLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// userNameLabel
//
resources.ApplyResources(this.userNameLabel, "userNameLabel");
this.userNameLabel.Name = "userNameLabel";
//
// oldPasswLabel
//
resources.ApplyResources(this.oldPasswLabel, "oldPasswLabel");
this.oldPasswLabel.Name = "oldPasswLabel";
//
// oldPasswTextBox
//
resources.ApplyResources(this.oldPasswTextBox, "oldPasswTextBox");
this.oldPasswTextBox.Name = "oldPasswTextBox";
this.oldPasswTextBox.UseSystemPasswordChar = true;
this.oldPasswTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.passwordTextBox_KeyPress);
//
// cancelButton
//
resources.ApplyResources(this.cancelButton, "cancelButton");
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Name = "cancelButton";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
//
// okButton
//
resources.ApplyResources(this.okButton, "okButton");
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.Name = "okButton";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// userNameTextBox
//
resources.ApplyResources(this.userNameTextBox, "userNameTextBox");
this.userNameTextBox.Name = "userNameTextBox";
this.userNameTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.userNameTextBox_KeyPress);
//
// newPasswTextBox
//
resources.ApplyResources(this.newPasswTextBox, "newPasswTextBox");
this.newPasswTextBox.Name = "newPasswTextBox";
this.newPasswTextBox.UseSystemPasswordChar = true;
this.newPasswTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.newPasswTextBox_KeyPress);
//
// newPasswVerifTextBox
//
resources.ApplyResources(this.newPasswVerifTextBox, "newPasswVerifTextBox");
this.newPasswVerifTextBox.Name = "newPasswVerifTextBox";
this.newPasswVerifTextBox.UseSystemPasswordChar = true;
this.newPasswVerifTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.newPasswVerifTextBox_KeyPress);
//
// newPasswLabel
//
resources.ApplyResources(this.newPasswLabel, "newPasswLabel");
this.newPasswLabel.Name = "newPasswLabel";
//
// newPasswVerifLabel
//
resources.ApplyResources(this.newPasswVerifLabel, "newPasswVerifLabel");
this.newPasswVerifLabel.Name = "newPasswVerifLabel";
//
// PasswordChangeDlg
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancelButton;
this.Controls.Add(this.newPasswVerifLabel);
this.Controls.Add(this.newPasswLabel);
this.Controls.Add(this.newPasswVerifTextBox);
this.Controls.Add(this.newPasswTextBox);
this.Controls.Add(this.userNameTextBox);
this.Controls.Add(this.okButton);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.oldPasswTextBox);
this.Controls.Add(this.oldPasswLabel);
this.Controls.Add(this.userNameLabel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "PasswordChangeDlg";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Load += new System.EventHandler(this.LoginDlg_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label userNameLabel;
private System.Windows.Forms.Label oldPasswLabel;
private System.Windows.Forms.TextBox userNameTextBox;
private System.Windows.Forms.TextBox oldPasswTextBox;
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.TextBox newPasswTextBox;
private System.Windows.Forms.TextBox newPasswVerifTextBox;
private System.Windows.Forms.Label newPasswLabel;
private System.Windows.Forms.Label newPasswVerifLabel;
}
}