qtc-net-client/qtc-net-client-2/Forms/ProfileEdit.Designer.cs
2025-06-19 23:24:39 -07:00

114 lines
3.7 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();
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, 148);
btnSave.Name = "btnSave";
btnSave.Size = new Size(43, 23);
btnSave.TabIndex = 4;
btnSave.Text = "Save";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += btnSave_Click;
//
// frmProfileEdit
//
AutoScaleDimensions = new SizeF(6F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.DodgerBlue;
ClientSize = new Size(345, 187);
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 = "frmProfileEdit";
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;
}
}