📄 settingsform.designer.cs
字号:
namespace MobileDevelopersHandbook
{
partial class SettingsForm
{
/// <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();
System.Windows.Forms.Label fontnameLabel;
System.Windows.Forms.Label fontSizeLabel;
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.saveMenuItem = new System.Windows.Forms.MenuItem();
this.cancelMenuItem = new System.Windows.Forms.MenuItem();
this.settingsBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.fontnameComboBox = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.textColorComboBox = new System.Windows.Forms.ComboBox();
this.fontSizeComboBox = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.backGroundColorComboBox = new System.Windows.Forms.ComboBox();
fontnameLabel = new System.Windows.Forms.Label();
fontSizeLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.saveMenuItem);
this.mainMenu1.MenuItems.Add(this.cancelMenuItem);
//
// saveMenuItem
//
this.saveMenuItem.Text = "Save";
this.saveMenuItem.Click += new System.EventHandler(this.saveMenuItem_Click);
//
// cancelMenuItem
//
this.cancelMenuItem.Text = "Cancel";
this.cancelMenuItem.Click += new System.EventHandler(this.cancelMenuItem_Click);
//
// fontnameLabel
//
fontnameLabel.Location = new System.Drawing.Point(2, 1);
fontnameLabel.Name = "fontnameLabel";
fontnameLabel.Size = new System.Drawing.Size(64, 16);
fontnameLabel.Text = "Fontname:";
//
// settingsBindingSource
//
this.settingsBindingSource.DataSource = typeof(MobileDevelopersHandbook.Settings);
//
// fontnameComboBox
//
this.fontnameComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.settingsBindingSource, "Fontname", true));
this.fontnameComboBox.Items.Add("Nina");
this.fontnameComboBox.Items.Add("Segoe Condensed");
this.fontnameComboBox.Location = new System.Drawing.Point(2, 17);
this.fontnameComboBox.Name = "fontnameComboBox";
this.fontnameComboBox.TabIndex = 1;
//
// fontSizeLabel
//
fontSizeLabel.Location = new System.Drawing.Point(2, 50);
fontSizeLabel.Name = "fontSizeLabel";
fontSizeLabel.Size = new System.Drawing.Size(58, 16);
fontSizeLabel.Text = "Font Size:";
//
// label1
//
this.label1.Location = new System.Drawing.Point(2, 91);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(96, 16);
this.label1.Text = "Text Color:";
//
// textColorComboBox
//
this.textColorComboBox.Items.Add("White");
this.textColorComboBox.Items.Add("Black");
this.textColorComboBox.Items.Add("Red");
this.textColorComboBox.Items.Add("Blue");
this.textColorComboBox.Location = new System.Drawing.Point(2, 108);
this.textColorComboBox.Name = "textColorComboBox";
this.textColorComboBox.TabIndex = 3;
//
// fontSizeComboBox
//
this.fontSizeComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.settingsBindingSource, "FontSize", true));
this.fontSizeComboBox.Items.Add("9");
this.fontSizeComboBox.Items.Add("10");
this.fontSizeComboBox.Items.Add("11");
this.fontSizeComboBox.Items.Add("12");
this.fontSizeComboBox.Location = new System.Drawing.Point(2, 66);
this.fontSizeComboBox.Name = "fontSizeComboBox";
this.fontSizeComboBox.TabIndex = 2;
//
// label2
//
this.label2.Location = new System.Drawing.Point(3, 133);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(120, 16);
this.label2.Text = "Background Color:";
//
// backGroundColorComboBox
//
this.backGroundColorComboBox.Items.Add("Black");
this.backGroundColorComboBox.Items.Add("White");
this.backGroundColorComboBox.Items.Add("Yellow");
this.backGroundColorComboBox.Items.Add("Green");
this.backGroundColorComboBox.Location = new System.Drawing.Point(2, 152);
this.backGroundColorComboBox.Name = "backGroundColorComboBox";
this.backGroundColorComboBox.TabIndex = 4;
//
// SettingsForm
//
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.backGroundColorComboBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.fontSizeComboBox);
this.Controls.Add(this.textColorComboBox);
this.Controls.Add(this.label1);
this.Controls.Add(fontnameLabel);
this.Controls.Add(this.fontnameComboBox);
this.Controls.Add(fontSizeLabel);
this.Menu = this.mainMenu1;
this.Name = "SettingsForm";
this.Text = "SettingsForm";
this.Load += new System.EventHandler(this.SettingsForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MenuItem saveMenuItem;
private System.Windows.Forms.MenuItem cancelMenuItem;
private System.Windows.Forms.BindingSource settingsBindingSource;
private System.Windows.Forms.ComboBox fontnameComboBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox textColorComboBox;
private System.Windows.Forms.ComboBox fontSizeComboBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox backGroundColorComboBox;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -