169 lines
6.3 KiB
C#
169 lines
6.3 KiB
C#
namespace PortalAccountsView
|
|
{
|
|
partial class FormAccount
|
|
{
|
|
/// <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()
|
|
{
|
|
labelLogin = new Label();
|
|
labelInterest = new Label();
|
|
labelAvatar = new Label();
|
|
labelEmail = new Label();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
textBoxLogin = new TextBox();
|
|
customListBoxInterest = new Components.CustomListBox();
|
|
textBoxControlEmail = new RodionovLibrary.VisualComponents.TextBoxControl();
|
|
textBoxAvatar = new TextBox();
|
|
SuspendLayout();
|
|
//
|
|
// labelLogin
|
|
//
|
|
labelLogin.AutoSize = true;
|
|
labelLogin.Location = new Point(39, 17);
|
|
labelLogin.Name = "labelLogin";
|
|
labelLogin.Size = new Size(52, 20);
|
|
labelLogin.TabIndex = 0;
|
|
labelLogin.Text = "Логин";
|
|
//
|
|
// labelInterest
|
|
//
|
|
labelInterest.AutoSize = true;
|
|
labelInterest.Location = new Point(39, 99);
|
|
labelInterest.Name = "labelInterest";
|
|
labelInterest.Size = new Size(67, 20);
|
|
labelInterest.TabIndex = 1;
|
|
labelInterest.Text = "Интерес";
|
|
//
|
|
// labelAvatar
|
|
//
|
|
labelAvatar.AutoSize = true;
|
|
labelAvatar.Location = new Point(570, 17);
|
|
labelAvatar.Name = "labelAvatar";
|
|
labelAvatar.Size = new Size(58, 20);
|
|
labelAvatar.TabIndex = 2;
|
|
labelAvatar.Text = "Аватар";
|
|
//
|
|
// labelEmail
|
|
//
|
|
labelEmail.AutoSize = true;
|
|
labelEmail.Location = new Point(570, 138);
|
|
labelEmail.Name = "labelEmail";
|
|
labelEmail.Size = new Size(51, 20);
|
|
labelEmail.TabIndex = 3;
|
|
labelEmail.Text = "Почта";
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(277, 352);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(105, 36);
|
|
buttonSave.TabIndex = 9;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(470, 352);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(105, 36);
|
|
buttonCancel.TabIndex = 10;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// textBoxLogin
|
|
//
|
|
textBoxLogin.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
textBoxLogin.Location = new Point(39, 56);
|
|
textBoxLogin.Name = "textBoxLogin";
|
|
textBoxLogin.Size = new Size(226, 27);
|
|
textBoxLogin.TabIndex = 11;
|
|
textBoxLogin.TextChanged += TextBoxLogin_TextChanged;
|
|
//
|
|
// customListBoxInterest
|
|
//
|
|
customListBoxInterest.Location = new Point(39, 123);
|
|
customListBoxInterest.Margin = new Padding(3, 4, 3, 4);
|
|
customListBoxInterest.Name = "customListBoxInterest";
|
|
customListBoxInterest.SelectedItem = "";
|
|
customListBoxInterest.Size = new Size(226, 157);
|
|
customListBoxInterest.TabIndex = 12;
|
|
//
|
|
// textBoxControlEmail
|
|
//
|
|
textBoxControlEmail.Location = new Point(451, 174);
|
|
textBoxControlEmail.Margin = new Padding(3, 4, 3, 4);
|
|
textBoxControlEmail.Name = "textBoxControlEmail";
|
|
textBoxControlEmail.Pattern = null;
|
|
textBoxControlEmail.Size = new Size(309, 44);
|
|
textBoxControlEmail.TabIndex = 13;
|
|
//
|
|
// textBoxAvatar
|
|
//
|
|
textBoxAvatar.Location = new Point(541, 58);
|
|
textBoxAvatar.Name = "textBoxAvatar";
|
|
textBoxAvatar.Size = new Size(125, 27);
|
|
textBoxAvatar.TabIndex = 14;
|
|
textBoxAvatar.Click += textBoxAvatar_Click;
|
|
//
|
|
// FormAccount
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(textBoxAvatar);
|
|
Controls.Add(textBoxControlEmail);
|
|
Controls.Add(customListBoxInterest);
|
|
Controls.Add(textBoxLogin);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(labelEmail);
|
|
Controls.Add(labelAvatar);
|
|
Controls.Add(labelInterest);
|
|
Controls.Add(labelLogin);
|
|
Name = "FormAccount";
|
|
Text = "FormAccount";
|
|
Load += FormAccount_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelLogin;
|
|
private Label labelInterest;
|
|
private Label labelAvatar;
|
|
private Label labelEmail;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
private TextBox textBoxLogin;
|
|
private Components.CustomListBox customListBoxInterest;
|
|
private RodionovLibrary.VisualComponents.TextBoxControl textBoxControlEmail;
|
|
private TextBox textBoxAvatar;
|
|
}
|
|
} |