mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
105 lines
4.4 KiB
C#
105 lines
4.4 KiB
C#
namespace InputText
|
|
{
|
|
partial class InputBox
|
|
{
|
|
/// <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()
|
|
{
|
|
this.txtInput = new System.Windows.Forms.TextBox();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// txtInput
|
|
//
|
|
this.txtInput.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.txtInput.Location = new System.Drawing.Point(0, 0);
|
|
this.txtInput.Margin = new System.Windows.Forms.Padding(0);
|
|
this.txtInput.Multiline = true;
|
|
this.txtInput.Name = "txtInput";
|
|
this.txtInput.Size = new System.Drawing.Size(200, 22);
|
|
this.txtInput.TabIndex = 0;
|
|
this.txtInput.Leave += new System.EventHandler(this.txtInput_Leave);
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.btnOK.Location = new System.Drawing.Point(2, 2);
|
|
this.btnOK.Margin = new System.Windows.Forms.Padding(0);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(2, 2);
|
|
this.btnOK.TabIndex = 1;
|
|
this.btnOK.TabStop = false;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(2, 2);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(0);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(2, 2);
|
|
this.btnCancel.TabIndex = 2;
|
|
this.btnCancel.TabStop = false;
|
|
this.btnCancel.Text = "btnCancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// InputBox
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.AutoSize = true;
|
|
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(251, 42);
|
|
this.Controls.Add(this.txtInput);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnOK);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Name = "InputBox";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "InputBox";
|
|
this.Deactivate += new System.EventHandler(this.InputBox_Deactivate);
|
|
this.Load += new System.EventHandler(this.InputBox_Load);
|
|
this.Shown += new System.EventHandler(this.InputBox_Shown);
|
|
this.Leave += new System.EventHandler(this.InputBox_Leave);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox txtInput;
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
}
|
|
} |