📄 form1.designer.cs
字号:
namespace MobileDevelopersHandbook
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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()
{
this.components = new System.ComponentModel.Container();
this.messageTextLabel = new System.Windows.Forms.Label();
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.menuItemExit = new System.Windows.Forms.MenuItem();
this.appDatabaseDataSet = new MobileDevelopersHandbook.AppDatabaseDataSet();
this.messagesBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.messagesTableAdapter = new MobileDevelopersHandbook.AppDatabaseDataSetTableAdapters.MessagesTableAdapter();
this.messageTextLabel1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// messageTextLabel
//
this.messageTextLabel.Location = new System.Drawing.Point(3, 9);
this.messageTextLabel.Name = "messageTextLabel";
this.messageTextLabel.Size = new System.Drawing.Size(81, 16);
this.messageTextLabel.Text = "Message Text:";
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItemExit);
//
// menuItemExit
//
this.menuItemExit.Text = "Exit";
this.menuItemExit.Click += new System.EventHandler(this.menuItemExit_Click);
//
// appDatabaseDataSet
//
this.appDatabaseDataSet.DataSetName = "AppDatabaseDataSet";
this.appDatabaseDataSet.Prefix = "";
this.appDatabaseDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// messagesBindingSource
//
this.messagesBindingSource.DataMember = "Messages";
this.messagesBindingSource.DataSource = this.appDatabaseDataSet;
//
// messagesTableAdapter
//
this.messagesTableAdapter.ClearBeforeFill = true;
//
// messageTextLabel1
//
this.messageTextLabel1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.messagesBindingSource, "MessageText", true));
this.messageTextLabel1.Font = new System.Drawing.Font("Segoe Condensed", 10F, System.Drawing.FontStyle.Regular);
this.messageTextLabel1.Location = new System.Drawing.Point(3, 25);
this.messageTextLabel1.Name = "messageTextLabel1";
this.messageTextLabel1.Size = new System.Drawing.Size(170, 110);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(176, 180);
this.Controls.Add(this.messageTextLabel);
this.Controls.Add(this.messageTextLabel1);
this.Menu = this.mainMenu1;
this.Name = "Form1";
this.Text = "Secure App";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MenuItem menuItemExit;
private AppDatabaseDataSet appDatabaseDataSet;
private System.Windows.Forms.BindingSource messagesBindingSource;
private MobileDevelopersHandbook.AppDatabaseDataSetTableAdapters.MessagesTableAdapter messagesTableAdapter;
private System.Windows.Forms.Label messageTextLabel1;
private System.Windows.Forms.Label messageTextLabel;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -