1 Star 0 Fork 0

myesn-lab / Identity Launcher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
FrmMain.Designer.cs 7.55 KB
一键复制 编辑 原始数据 按行查看 历史
myEsn2E9 提交于 2020-03-13 19:05 . 1
namespace WindowsFormsApp1
{
partial class FrmMain
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.btnAdmin = new System.Windows.Forms.Button();
this.btnProfile = new System.Windows.Forms.Button();
this.btnContact = new System.Windows.Forms.Button();
this.txtMsg = new System.Windows.Forms.TextBox();
this.lblAdmin = new System.Windows.Forms.Label();
this.lblContact = new System.Windows.Forms.Label();
this.lblProfile = new System.Windows.Forms.Label();
this.btnExit = new System.Windows.Forms.Button();
this.btnSelector = new System.Windows.Forms.Button();
this.lblSelector = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnAdmin
//
this.btnAdmin.Location = new System.Drawing.Point(97, 30);
this.btnAdmin.Name = "btnAdmin";
this.btnAdmin.Size = new System.Drawing.Size(99, 58);
this.btnAdmin.TabIndex = 0;
this.btnAdmin.Text = "Admin";
this.btnAdmin.UseVisualStyleBackColor = true;
this.btnAdmin.Click += new System.EventHandler(this.btnAdmin_Click);
//
// btnProfile
//
this.btnProfile.Location = new System.Drawing.Point(405, 30);
this.btnProfile.Name = "btnProfile";
this.btnProfile.Size = new System.Drawing.Size(99, 58);
this.btnProfile.TabIndex = 0;
this.btnProfile.Text = "Profile";
this.btnProfile.UseVisualStyleBackColor = true;
this.btnProfile.Click += new System.EventHandler(this.btnProfile_Click);
//
// btnContact
//
this.btnContact.Location = new System.Drawing.Point(251, 30);
this.btnContact.Name = "btnContact";
this.btnContact.Size = new System.Drawing.Size(99, 58);
this.btnContact.TabIndex = 0;
this.btnContact.Text = "Contact";
this.btnContact.UseVisualStyleBackColor = true;
this.btnContact.Click += new System.EventHandler(this.btnContact_Click);
//
// txtMsg
//
this.txtMsg.Dock = System.Windows.Forms.DockStyle.Bottom;
this.txtMsg.Location = new System.Drawing.Point(0, 168);
this.txtMsg.Multiline = true;
this.txtMsg.Name = "txtMsg";
this.txtMsg.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtMsg.Size = new System.Drawing.Size(921, 380);
this.txtMsg.TabIndex = 1;
//
// lblAdmin
//
this.lblAdmin.AutoSize = true;
this.lblAdmin.Location = new System.Drawing.Point(94, 106);
this.lblAdmin.Name = "lblAdmin";
this.lblAdmin.Size = new System.Drawing.Size(55, 15);
this.lblAdmin.TabIndex = 2;
this.lblAdmin.Text = "label1";
//
// lblContact
//
this.lblContact.AutoSize = true;
this.lblContact.Location = new System.Drawing.Point(248, 106);
this.lblContact.Name = "lblContact";
this.lblContact.Size = new System.Drawing.Size(55, 15);
this.lblContact.TabIndex = 2;
this.lblContact.Text = "label1";
//
// lblProfile
//
this.lblProfile.AutoSize = true;
this.lblProfile.Location = new System.Drawing.Point(402, 106);
this.lblProfile.Name = "lblProfile";
this.lblProfile.Size = new System.Drawing.Size(55, 15);
this.lblProfile.TabIndex = 2;
this.lblProfile.Text = "label1";
//
// btnExit
//
this.btnExit.Location = new System.Drawing.Point(728, 30);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(99, 58);
this.btnExit.TabIndex = 3;
this.btnExit.Text = "Exit";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// btnSelector
//
this.btnSelector.Location = new System.Drawing.Point(557, 30);
this.btnSelector.Name = "btnSelector";
this.btnSelector.Size = new System.Drawing.Size(99, 58);
this.btnSelector.TabIndex = 0;
this.btnSelector.Text = "Selector";
this.btnSelector.UseVisualStyleBackColor = true;
this.btnSelector.Click += new System.EventHandler(this.btnSelector_Click);
//
// lblSelector
//
this.lblSelector.AutoSize = true;
this.lblSelector.Location = new System.Drawing.Point(554, 106);
this.lblSelector.Name = "lblSelector";
this.lblSelector.Size = new System.Drawing.Size(55, 15);
this.lblSelector.TabIndex = 2;
this.lblSelector.Text = "label1";
//
// FrmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(921, 548);
this.ControlBox = false;
this.Controls.Add(this.btnExit);
this.Controls.Add(this.lblSelector);
this.Controls.Add(this.lblProfile);
this.Controls.Add(this.lblContact);
this.Controls.Add(this.lblAdmin);
this.Controls.Add(this.txtMsg);
this.Controls.Add(this.btnContact);
this.Controls.Add(this.btnSelector);
this.Controls.Add(this.btnProfile);
this.Controls.Add(this.btnAdmin);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "FrmMain";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Identity 启动器";
this.Load += new System.EventHandler(this.FrmMain_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnAdmin;
private System.Windows.Forms.Button btnProfile;
private System.Windows.Forms.Button btnContact;
private System.Windows.Forms.TextBox txtMsg;
private System.Windows.Forms.Label lblAdmin;
private System.Windows.Forms.Label lblContact;
private System.Windows.Forms.Label lblProfile;
private System.Windows.Forms.Button btnExit;
private System.Windows.Forms.Button btnSelector;
private System.Windows.Forms.Label lblSelector;
}
}
C#
1
https://gitee.com/myesn-lab/Identity-Launcher.git
git@gitee.com:myesn-lab/Identity-Launcher.git
myesn-lab
Identity-Launcher
Identity Launcher
master

搜索帮助