138 lines
4.6 KiB
C#
138 lines
4.6 KiB
C#
namespace qtc_net_client_2.Forms
|
|
{
|
|
partial class ProfileEdit
|
|
{
|
|
/// <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()
|
|
{
|
|
tbUsername = new TextBox();
|
|
lblUsername = new Label();
|
|
rtxtBio = new RichTextBox();
|
|
lblBio = new Label();
|
|
btnSave = new Button();
|
|
cbCosmetic = new ComboBox();
|
|
lblCosmetic = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// tbUsername
|
|
//
|
|
tbUsername.Location = new Point(76, 17);
|
|
tbUsername.Name = "tbUsername";
|
|
tbUsername.Size = new Size(257, 23);
|
|
tbUsername.TabIndex = 0;
|
|
//
|
|
// lblUsername
|
|
//
|
|
lblUsername.AutoSize = true;
|
|
lblUsername.Location = new Point(12, 20);
|
|
lblUsername.Name = "lblUsername";
|
|
lblUsername.Size = new Size(58, 15);
|
|
lblUsername.TabIndex = 1;
|
|
lblUsername.Text = "Username";
|
|
//
|
|
// rtxtBio
|
|
//
|
|
rtxtBio.Location = new Point(76, 46);
|
|
rtxtBio.Name = "rtxtBio";
|
|
rtxtBio.Size = new Size(257, 96);
|
|
rtxtBio.TabIndex = 2;
|
|
rtxtBio.Text = "";
|
|
//
|
|
// lblBio
|
|
//
|
|
lblBio.AutoSize = true;
|
|
lblBio.Location = new Point(47, 49);
|
|
lblBio.Name = "lblBio";
|
|
lblBio.Size = new Size(23, 15);
|
|
lblBio.TabIndex = 3;
|
|
lblBio.Text = "Bio";
|
|
//
|
|
// btnSave
|
|
//
|
|
btnSave.ForeColor = Color.Black;
|
|
btnSave.Location = new Point(76, 177);
|
|
btnSave.Name = "btnSave";
|
|
btnSave.Size = new Size(43, 23);
|
|
btnSave.TabIndex = 4;
|
|
btnSave.Text = "Save";
|
|
btnSave.UseVisualStyleBackColor = true;
|
|
btnSave.Click += btnSave_Click;
|
|
//
|
|
// cbCosmetic
|
|
//
|
|
cbCosmetic.FormattingEnabled = true;
|
|
cbCosmetic.Items.AddRange(new object[] { "(None)" });
|
|
cbCosmetic.Location = new Point(76, 148);
|
|
cbCosmetic.Name = "cbCosmetic";
|
|
cbCosmetic.Size = new Size(121, 23);
|
|
cbCosmetic.TabIndex = 5;
|
|
//
|
|
// lblCosmetic
|
|
//
|
|
lblCosmetic.AutoSize = true;
|
|
lblCosmetic.Location = new Point(21, 151);
|
|
lblCosmetic.Name = "lblCosmetic";
|
|
lblCosmetic.Size = new Size(53, 15);
|
|
lblCosmetic.TabIndex = 6;
|
|
lblCosmetic.Text = "Cosmetic";
|
|
//
|
|
// ProfileEdit
|
|
//
|
|
AutoScaleDimensions = new SizeF(6F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = Color.DodgerBlue;
|
|
ClientSize = new Size(345, 208);
|
|
Controls.Add(lblCosmetic);
|
|
Controls.Add(cbCosmetic);
|
|
Controls.Add(btnSave);
|
|
Controls.Add(lblBio);
|
|
Controls.Add(rtxtBio);
|
|
Controls.Add(lblUsername);
|
|
Controls.Add(tbUsername);
|
|
Font = new Font("Segoe UI Light", 9F);
|
|
ForeColor = SystemColors.ControlLight;
|
|
FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "ProfileEdit";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "QtC.NET Client - Edit Profile";
|
|
Load += frmProfileEdit_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox tbUsername;
|
|
private Label lblUsername;
|
|
private RichTextBox rtxtBio;
|
|
private Label lblBio;
|
|
private Button btnSave;
|
|
private ComboBox cbCosmetic;
|
|
private Label lblCosmetic;
|
|
}
|
|
} |