mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
102 lines
4.7 KiB
C#
102 lines
4.7 KiB
C#
|
|
namespace Flowframes.Forms
|
|
{
|
|
partial class PromptForm
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PromptForm));
|
|
this.msgLabel = new System.Windows.Forms.Label();
|
|
this.textBox = new System.Windows.Forms.TextBox();
|
|
this.confirmBtn = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// msgLabel
|
|
//
|
|
this.msgLabel.ForeColor = System.Drawing.Color.White;
|
|
this.msgLabel.Location = new System.Drawing.Point(13, 13);
|
|
this.msgLabel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 11);
|
|
this.msgLabel.Name = "msgLabel";
|
|
this.msgLabel.Size = new System.Drawing.Size(318, 30);
|
|
this.msgLabel.TabIndex = 18;
|
|
this.msgLabel.Text = "The Text Here";
|
|
this.msgLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
|
//
|
|
// textBox
|
|
//
|
|
this.textBox.AllowDrop = true;
|
|
this.textBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.textBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.textBox.ForeColor = System.Drawing.Color.White;
|
|
this.textBox.Location = new System.Drawing.Point(16, 57);
|
|
this.textBox.MinimumSize = new System.Drawing.Size(4, 23);
|
|
this.textBox.Name = "textBox";
|
|
this.textBox.Size = new System.Drawing.Size(315, 21);
|
|
this.textBox.TabIndex = 55;
|
|
//
|
|
// confirmBtn
|
|
//
|
|
this.confirmBtn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.confirmBtn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
|
|
this.confirmBtn.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.confirmBtn.Location = new System.Drawing.Point(12, 106);
|
|
this.confirmBtn.Name = "confirmBtn";
|
|
this.confirmBtn.Size = new System.Drawing.Size(320, 23);
|
|
this.confirmBtn.TabIndex = 56;
|
|
this.confirmBtn.Text = "OK";
|
|
this.confirmBtn.UseVisualStyleBackColor = false;
|
|
this.confirmBtn.Click += new System.EventHandler(this.confirmBtn_Click);
|
|
//
|
|
// PromptForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
|
|
this.ClientSize = new System.Drawing.Size(344, 141);
|
|
this.Controls.Add(this.confirmBtn);
|
|
this.Controls.Add(this.textBox);
|
|
this.Controls.Add(this.msgLabel);
|
|
this.ForeColor = System.Drawing.Color.White;
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "PromptForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Prompt";
|
|
this.Load += new System.EventHandler(this.PromptForm_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label msgLabel;
|
|
private System.Windows.Forms.TextBox textBox;
|
|
private System.Windows.Forms.Button confirmBtn;
|
|
}
|
|
} |