namespace FezTerm
{
partial class OptionsForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsForm));
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.label1 = new System.Windows.Forms.Label();
this.btnBackColor = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.btnForeColor = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.fontDialog1 = new System.Windows.Forms.FontDialog();
this.btnFont = new System.Windows.Forms.Button();
this.tbFont = new System.Windows.Forms.TextBox();
this.tbForeColor = new System.Windows.Forms.TextBox();
this.tbBackColor = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(20, 23);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(59, 13);
this.label1.TabIndex = 0;
this.label1.Text = "BackColor:";
//
// btnBackColor
//
this.btnBackColor.Location = new System.Drawing.Point(183, 18);
this.btnBackColor.Name = "btnBackColor";
this.btnBackColor.Size = new System.Drawing.Size(32, 23);
this.btnBackColor.TabIndex = 1;
this.btnBackColor.Text = "...";
this.btnBackColor.UseVisualStyleBackColor = true;
this.btnBackColor.Click += new System.EventHandler(this.btnBackColor_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(20, 49);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(55, 13);
this.label2.TabIndex = 3;
this.label2.Text = "ForeColor:";
//
// btnForeColor
//
this.btnForeColor.Location = new System.Drawing.Point(183, 44);
this.btnForeColor.Name = "btnForeColor";
this.btnForeColor.Size = new System.Drawing.Size(32, 23);
this.btnForeColor.TabIndex = 5;
this.btnForeColor.Text = "...";
this.btnForeColor.UseVisualStyleBackColor = true;
this.btnForeColor.Click += new System.EventHandler(this.btnForeColor_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(20, 78);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(31, 13);
this.label3.TabIndex = 6;
this.label3.Text = "Font:";
//
// fontDialog1
//
this.fontDialog1.FontMustExist = true;
//
// btnFont
//
this.btnFont.Location = new System.Drawing.Point(183, 73);
this.btnFont.Name = "btnFont";
this.btnFont.Size = new System.Drawing.Size(32, 23);
this.btnFont.TabIndex = 8;
this.btnFont.Text = "...";
this.btnFont.UseVisualStyleBackColor = true;
this.btnFont.Click += new System.EventHandler(this.btnFont_Click);
//
// tbFont
//
this.tbFont.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::FezTerm.Properties.Settings.Default, "OutputFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.tbFont.Font = global::FezTerm.Properties.Settings.Default.OutputFont;
this.tbFont.Location = new System.Drawing.Point(94, 77);
this.tbFont.Name = "tbFont";
this.tbFont.ReadOnly = true;
this.tbFont.Size = new System.Drawing.Size(83, 19);
this.tbFont.TabIndex = 7;
this.tbFont.Text = "Sample";
//
// tbForeColor
//
this.tbForeColor.BackColor = global::FezTerm.Properties.Settings.Default.ForeColor;
this.tbForeColor.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::FezTerm.Properties.Settings.Default, "ForeColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.tbForeColor.Location = new System.Drawing.Point(94, 46);
this.tbForeColor.Name = "tbForeColor";
this.tbForeColor.Size = new System.Drawing.Size(83, 20);
this.tbForeColor.TabIndex = 4;
//
// tbBackColor
//
this.tbBackColor.BackColor = global::FezTerm.Properties.Settings.Default.BackColor;
this.tbBackColor.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::FezTerm.Properties.Settings.Default, "BackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.tbBackColor.Location = new System.Drawing.Point(94, 20);
this.tbBackColor.Name = "tbBackColor";
this.tbBackColor.Size = new System.Drawing.Size(83, 20);
this.tbBackColor.TabIndex = 2;
//
// OptionsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(251, 122);
this.Controls.Add(this.btnFont);
this.Controls.Add(this.tbFont);
this.Controls.Add(this.label3);
this.Controls.Add(this.btnForeColor);
this.Controls.Add(this.tbForeColor);
this.Controls.Add(this.label2);
this.Controls.Add(this.tbBackColor);
this.Controls.Add(this.btnBackColor);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "OptionsForm";
this.Text = "Options";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OptionsForm_FormClosing);
this.Load += new System.EventHandler(this.OptionsForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ColorDialog colorDialog1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnBackColor;
private System.Windows.Forms.TextBox tbBackColor;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox tbForeColor;
private System.Windows.Forms.Button btnForeColor;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.FontDialog fontDialog1;
private System.Windows.Forms.TextBox tbFont;
private System.Windows.Forms.Button btnFont;
}
}