namespace Core.Common.Controls.Swf
{
partial class CustomInputDialog
{
///
/// 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()
{
this.btnPanel = new System.Windows.Forms.Panel();
this.ButtonCancel = new System.Windows.Forms.Button();
this.ButtonOk = new System.Windows.Forms.Button();
this.btnPanel.SuspendLayout();
this.SuspendLayout();
//
// btnPanel
//
this.btnPanel.Controls.Add(this.ButtonCancel);
this.btnPanel.Controls.Add(this.ButtonOk);
this.btnPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.btnPanel.Location = new System.Drawing.Point(0, 64);
this.btnPanel.Name = "btnPanel";
this.btnPanel.Size = new System.Drawing.Size(304, 45);
this.btnPanel.TabIndex = 1;
//
// ButtonCancel
//
this.ButtonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.ButtonCancel.CausesValidation = false;
this.ButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.ButtonCancel.Location = new System.Drawing.Point(217, 12);
this.ButtonCancel.Name = "ButtonCancel";
this.ButtonCancel.Size = new System.Drawing.Size(75, 23);
this.ButtonCancel.TabIndex = 3;
this.ButtonCancel.Text = "Cancel";
this.ButtonCancel.UseVisualStyleBackColor = true;
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// ButtonOk
//
this.ButtonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.ButtonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
this.ButtonOk.Location = new System.Drawing.Point(136, 12);
this.ButtonOk.Name = "ButtonOk";
this.ButtonOk.Size = new System.Drawing.Size(75, 23);
this.ButtonOk.TabIndex = 2;
this.ButtonOk.Text = "OK";
this.ButtonOk.UseVisualStyleBackColor = true;
this.ButtonOk.Click += new System.EventHandler(this.ButtonOk_Click);
//
// CustomInputDialog
//
this.AcceptButton = this.ButtonOk;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.ButtonCancel;
this.ClientSize = new System.Drawing.Size(304, 109);
this.Controls.Add(this.btnPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Name = "CustomInputDialog";
this.ShowInTaskbar = false;
this.Text = "Please supply values...";
this.btnPanel.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel btnPanel;
private System.Windows.Forms.Button ButtonCancel;
private System.Windows.Forms.Button ButtonOk;
}
}