SuperDesign/Source/开发辅助工具/FrmMessageBox.Designer.cs
2020-11-28 16:15:24 +08:00

566 lines
27 KiB
C#

namespace
{
partial class FrmMessageBox
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.RbIconError = new System.Windows.Forms.RadioButton();
this.RbIconWarning = new System.Windows.Forms.RadioButton();
this.RbIconQuestion = new System.Windows.Forms.RadioButton();
this.RbIconInformation = new System.Windows.Forms.RadioButton();
this.RbIconNone = new System.Windows.Forms.RadioButton();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.ChkTitleIsPram = new System.Windows.Forms.CheckBox();
this.CbbTitle = new ryControls.RyComboBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.TxtContent = new ryControls.TextBoxEx2();
this.ChkContentIsPram = new System.Windows.Forms.CheckBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.RbBtnAbortRetryIgnore = new System.Windows.Forms.RadioButton();
this.RbBtnRetryCancel = new System.Windows.Forms.RadioButton();
this.RbBtnYesNoCancel = new System.Windows.Forms.RadioButton();
this.RbBtnYesNo = new System.Windows.Forms.RadioButton();
this.RbBtnOKCancel = new System.Windows.Forms.RadioButton();
this.RbBtnOK = new System.Windows.Forms.RadioButton();
this.GroupResult = new System.Windows.Forms.GroupBox();
this.ChkResultNo = new System.Windows.Forms.CheckBox();
this.ChkResultYes = new System.Windows.Forms.CheckBox();
this.ChkResultIgnore = new System.Windows.Forms.CheckBox();
this.ChkResultRetry = new System.Windows.Forms.CheckBox();
this.ChkResultAbort = new System.Windows.Forms.CheckBox();
this.ChkResultCancel = new System.Windows.Forms.CheckBox();
this.ChkResultOK = new System.Windows.Forms.CheckBox();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.ChkTopMost = new System.Windows.Forms.CheckBox();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.RbDefaultButton3 = new System.Windows.Forms.RadioButton();
this.RbDefaultButton2 = new System.Windows.Forms.RadioButton();
this.RbDefaultButton1 = new System.Windows.Forms.RadioButton();
this.BtnCreate = new ryControls.ButtonEx();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.radioButton6 = new System.Windows.Forms.RadioButton();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox4.SuspendLayout();
this.GroupResult.SuspendLayout();
this.groupBox6.SuspendLayout();
this.groupBox7.SuspendLayout();
this.groupBox5.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.RbIconError);
this.groupBox1.Controls.Add(this.RbIconWarning);
this.groupBox1.Controls.Add(this.RbIconQuestion);
this.groupBox1.Controls.Add(this.RbIconInformation);
this.groupBox1.Controls.Add(this.RbIconNone);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(111, 215);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "显示图标";
//
// RbIconError
//
this.RbIconError.AutoSize = true;
this.RbIconError.Location = new System.Drawing.Point(18, 174);
this.RbIconError.Name = "RbIconError";
this.RbIconError.Size = new System.Drawing.Size(47, 16);
this.RbIconError.TabIndex = 4;
this.RbIconError.Text = "错误";
this.RbIconError.UseVisualStyleBackColor = true;
//
// RbIconWarning
//
this.RbIconWarning.AutoSize = true;
this.RbIconWarning.Location = new System.Drawing.Point(18, 137);
this.RbIconWarning.Name = "RbIconWarning";
this.RbIconWarning.Size = new System.Drawing.Size(47, 16);
this.RbIconWarning.TabIndex = 3;
this.RbIconWarning.Text = "警告";
this.RbIconWarning.UseVisualStyleBackColor = true;
//
// RbIconQuestion
//
this.RbIconQuestion.AutoSize = true;
this.RbIconQuestion.Location = new System.Drawing.Point(18, 100);
this.RbIconQuestion.Name = "RbIconQuestion";
this.RbIconQuestion.Size = new System.Drawing.Size(47, 16);
this.RbIconQuestion.TabIndex = 2;
this.RbIconQuestion.Text = "询问";
this.RbIconQuestion.UseVisualStyleBackColor = true;
//
// RbIconInformation
//
this.RbIconInformation.AutoSize = true;
this.RbIconInformation.Checked = true;
this.RbIconInformation.Location = new System.Drawing.Point(18, 63);
this.RbIconInformation.Name = "RbIconInformation";
this.RbIconInformation.Size = new System.Drawing.Size(47, 16);
this.RbIconInformation.TabIndex = 1;
this.RbIconInformation.TabStop = true;
this.RbIconInformation.Text = "提示";
this.RbIconInformation.UseVisualStyleBackColor = true;
//
// RbIconNone
//
this.RbIconNone.AutoSize = true;
this.RbIconNone.Location = new System.Drawing.Point(18, 26);
this.RbIconNone.Name = "RbIconNone";
this.RbIconNone.Size = new System.Drawing.Size(35, 16);
this.RbIconNone.TabIndex = 0;
this.RbIconNone.Text = "无";
this.RbIconNone.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.ChkTitleIsPram);
this.groupBox2.Controls.Add(this.CbbTitle);
this.groupBox2.Location = new System.Drawing.Point(129, 12);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(424, 71);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "对话框标题";
//
// ChkTitleIsPram
//
this.ChkTitleIsPram.AutoSize = true;
this.ChkTitleIsPram.Location = new System.Drawing.Point(6, 48);
this.ChkTitleIsPram.Name = "ChkTitleIsPram";
this.ChkTitleIsPram.Size = new System.Drawing.Size(96, 16);
this.ChkTitleIsPram.TabIndex = 1;
this.ChkTitleIsPram.Text = "标题为变量名";
this.ChkTitleIsPram.UseVisualStyleBackColor = true;
//
// CbbTitle
//
this.CbbTitle.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.CbbTitle.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.CbbTitle.FormattingEnabled = true;
this.CbbTitle.Location = new System.Drawing.Point(6, 20);
this.CbbTitle.Name = "CbbTitle";
this.CbbTitle.Size = new System.Drawing.Size(412, 22);
this.CbbTitle.TabIndex = 0;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.TxtContent);
this.groupBox3.Controls.Add(this.ChkContentIsPram);
this.groupBox3.Location = new System.Drawing.Point(129, 89);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(424, 138);
this.groupBox3.TabIndex = 2;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "文本信息";
//
// TxtContent
//
this.TxtContent.BackColor = System.Drawing.Color.White;
this.TxtContent.EmptyText = "";
this.TxtContent.Location = new System.Drawing.Point(6, 20);
this.TxtContent.MaxLength = 999999999;
this.TxtContent.Multiline = true;
this.TxtContent.Name = "TxtContent";
this.TxtContent.OnlyNumeric = false;
this.TxtContent.PasswordChar = '\0';
this.TxtContent.ReadOnly = false;
this.TxtContent.SelectedText = "";
this.TxtContent.SelectionLength = 0;
this.TxtContent.SelectionStart = 0;
this.TxtContent.Size = new System.Drawing.Size(412, 90);
this.TxtContent.TabIndex = 2;
this.TxtContent.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.TxtContent.ToolTip = "";
//
// ChkContentIsPram
//
this.ChkContentIsPram.AutoSize = true;
this.ChkContentIsPram.Location = new System.Drawing.Point(6, 116);
this.ChkContentIsPram.Name = "ChkContentIsPram";
this.ChkContentIsPram.Size = new System.Drawing.Size(120, 16);
this.ChkContentIsPram.TabIndex = 1;
this.ChkContentIsPram.Text = "文本信息为变量名";
this.ChkContentIsPram.UseVisualStyleBackColor = true;
//
// groupBox4
//
this.groupBox4.Controls.Add(this.RbBtnAbortRetryIgnore);
this.groupBox4.Controls.Add(this.RbBtnRetryCancel);
this.groupBox4.Controls.Add(this.RbBtnYesNoCancel);
this.groupBox4.Controls.Add(this.RbBtnYesNo);
this.groupBox4.Controls.Add(this.RbBtnOKCancel);
this.groupBox4.Controls.Add(this.RbBtnOK);
this.groupBox4.Location = new System.Drawing.Point(129, 233);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(147, 177);
this.groupBox4.TabIndex = 3;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "对话框按钮";
//
// RbBtnAbortRetryIgnore
//
this.RbBtnAbortRetryIgnore.AutoSize = true;
this.RbBtnAbortRetryIgnore.Location = new System.Drawing.Point(15, 134);
this.RbBtnAbortRetryIgnore.Name = "RbBtnAbortRetryIgnore";
this.RbBtnAbortRetryIgnore.Size = new System.Drawing.Size(107, 16);
this.RbBtnAbortRetryIgnore.TabIndex = 5;
this.RbBtnAbortRetryIgnore.Text = "终止/重试/忽略";
this.RbBtnAbortRetryIgnore.UseVisualStyleBackColor = true;
this.RbBtnAbortRetryIgnore.CheckedChanged += new System.EventHandler(this.RbBtnAbortRetryIgnore_CheckedChanged);
//
// RbBtnRetryCancel
//
this.RbBtnRetryCancel.AutoSize = true;
this.RbBtnRetryCancel.Location = new System.Drawing.Point(15, 112);
this.RbBtnRetryCancel.Name = "RbBtnRetryCancel";
this.RbBtnRetryCancel.Size = new System.Drawing.Size(77, 16);
this.RbBtnRetryCancel.TabIndex = 4;
this.RbBtnRetryCancel.Text = "重试/取消";
this.RbBtnRetryCancel.UseVisualStyleBackColor = true;
this.RbBtnRetryCancel.CheckedChanged += new System.EventHandler(this.RbBtnRetryCancel_CheckedChanged);
//
// RbBtnYesNoCancel
//
this.RbBtnYesNoCancel.AutoSize = true;
this.RbBtnYesNoCancel.Location = new System.Drawing.Point(15, 90);
this.RbBtnYesNoCancel.Name = "RbBtnYesNoCancel";
this.RbBtnYesNoCancel.Size = new System.Drawing.Size(83, 16);
this.RbBtnYesNoCancel.TabIndex = 3;
this.RbBtnYesNoCancel.Text = "是/否/取消";
this.RbBtnYesNoCancel.UseVisualStyleBackColor = true;
this.RbBtnYesNoCancel.CheckedChanged += new System.EventHandler(this.RbBtnYesNoCancel_CheckedChanged);
//
// RbBtnYesNo
//
this.RbBtnYesNo.AutoSize = true;
this.RbBtnYesNo.Location = new System.Drawing.Point(15, 68);
this.RbBtnYesNo.Name = "RbBtnYesNo";
this.RbBtnYesNo.Size = new System.Drawing.Size(53, 16);
this.RbBtnYesNo.TabIndex = 2;
this.RbBtnYesNo.Text = "是/否";
this.RbBtnYesNo.UseVisualStyleBackColor = true;
this.RbBtnYesNo.CheckedChanged += new System.EventHandler(this.RbBtnYesNo_CheckedChanged);
//
// RbBtnOKCancel
//
this.RbBtnOKCancel.AutoSize = true;
this.RbBtnOKCancel.Location = new System.Drawing.Point(15, 46);
this.RbBtnOKCancel.Name = "RbBtnOKCancel";
this.RbBtnOKCancel.Size = new System.Drawing.Size(77, 16);
this.RbBtnOKCancel.TabIndex = 1;
this.RbBtnOKCancel.Text = "确定/取消";
this.RbBtnOKCancel.UseVisualStyleBackColor = true;
this.RbBtnOKCancel.CheckedChanged += new System.EventHandler(this.RbBtnOKCancel_CheckedChanged);
//
// RbBtnOK
//
this.RbBtnOK.AutoSize = true;
this.RbBtnOK.Checked = true;
this.RbBtnOK.Location = new System.Drawing.Point(15, 24);
this.RbBtnOK.Name = "RbBtnOK";
this.RbBtnOK.Size = new System.Drawing.Size(47, 16);
this.RbBtnOK.TabIndex = 0;
this.RbBtnOK.TabStop = true;
this.RbBtnOK.Text = "确定";
this.RbBtnOK.UseVisualStyleBackColor = true;
this.RbBtnOK.CheckedChanged += new System.EventHandler(this.RbBtnOK_CheckedChanged);
//
// GroupResult
//
this.GroupResult.Controls.Add(this.ChkResultNo);
this.GroupResult.Controls.Add(this.ChkResultYes);
this.GroupResult.Controls.Add(this.ChkResultIgnore);
this.GroupResult.Controls.Add(this.ChkResultRetry);
this.GroupResult.Controls.Add(this.ChkResultAbort);
this.GroupResult.Controls.Add(this.ChkResultCancel);
this.GroupResult.Controls.Add(this.ChkResultOK);
this.GroupResult.Location = new System.Drawing.Point(284, 233);
this.GroupResult.Name = "GroupResult";
this.GroupResult.Size = new System.Drawing.Size(115, 177);
this.GroupResult.TabIndex = 4;
this.GroupResult.TabStop = false;
this.GroupResult.Text = "函数返回值";
//
// ChkResultNo
//
this.ChkResultNo.AutoSize = true;
this.ChkResultNo.Enabled = false;
this.ChkResultNo.Location = new System.Drawing.Point(11, 155);
this.ChkResultNo.Name = "ChkResultNo";
this.ChkResultNo.Size = new System.Drawing.Size(36, 16);
this.ChkResultNo.TabIndex = 6;
this.ChkResultNo.Text = "否";
this.ChkResultNo.UseVisualStyleBackColor = true;
//
// ChkResultYes
//
this.ChkResultYes.AutoSize = true;
this.ChkResultYes.Enabled = false;
this.ChkResultYes.Location = new System.Drawing.Point(11, 133);
this.ChkResultYes.Name = "ChkResultYes";
this.ChkResultYes.Size = new System.Drawing.Size(36, 16);
this.ChkResultYes.TabIndex = 5;
this.ChkResultYes.Text = "是";
this.ChkResultYes.UseVisualStyleBackColor = true;
//
// ChkResultIgnore
//
this.ChkResultIgnore.AutoSize = true;
this.ChkResultIgnore.Enabled = false;
this.ChkResultIgnore.Location = new System.Drawing.Point(11, 111);
this.ChkResultIgnore.Name = "ChkResultIgnore";
this.ChkResultIgnore.Size = new System.Drawing.Size(48, 16);
this.ChkResultIgnore.TabIndex = 4;
this.ChkResultIgnore.Text = "忽略";
this.ChkResultIgnore.UseVisualStyleBackColor = true;
//
// ChkResultRetry
//
this.ChkResultRetry.AutoSize = true;
this.ChkResultRetry.Enabled = false;
this.ChkResultRetry.Location = new System.Drawing.Point(11, 89);
this.ChkResultRetry.Name = "ChkResultRetry";
this.ChkResultRetry.Size = new System.Drawing.Size(48, 16);
this.ChkResultRetry.TabIndex = 3;
this.ChkResultRetry.Text = "重试";
this.ChkResultRetry.UseVisualStyleBackColor = true;
//
// ChkResultAbort
//
this.ChkResultAbort.AutoSize = true;
this.ChkResultAbort.Enabled = false;
this.ChkResultAbort.Location = new System.Drawing.Point(11, 67);
this.ChkResultAbort.Name = "ChkResultAbort";
this.ChkResultAbort.Size = new System.Drawing.Size(48, 16);
this.ChkResultAbort.TabIndex = 2;
this.ChkResultAbort.Text = "终止";
this.ChkResultAbort.UseVisualStyleBackColor = true;
//
// ChkResultCancel
//
this.ChkResultCancel.AutoSize = true;
this.ChkResultCancel.Enabled = false;
this.ChkResultCancel.Location = new System.Drawing.Point(11, 45);
this.ChkResultCancel.Name = "ChkResultCancel";
this.ChkResultCancel.Size = new System.Drawing.Size(48, 16);
this.ChkResultCancel.TabIndex = 1;
this.ChkResultCancel.Text = "取消";
this.ChkResultCancel.UseVisualStyleBackColor = true;
//
// ChkResultOK
//
this.ChkResultOK.AutoSize = true;
this.ChkResultOK.Enabled = false;
this.ChkResultOK.Location = new System.Drawing.Point(11, 23);
this.ChkResultOK.Name = "ChkResultOK";
this.ChkResultOK.Size = new System.Drawing.Size(48, 16);
this.ChkResultOK.TabIndex = 0;
this.ChkResultOK.Text = "确定";
this.ChkResultOK.UseVisualStyleBackColor = true;
//
// groupBox6
//
this.groupBox6.Controls.Add(this.ChkTopMost);
this.groupBox6.Location = new System.Drawing.Point(12, 233);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(111, 52);
this.groupBox6.TabIndex = 5;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "扩展风格";
//
// ChkTopMost
//
this.ChkTopMost.AutoSize = true;
this.ChkTopMost.Location = new System.Drawing.Point(11, 21);
this.ChkTopMost.Name = "ChkTopMost";
this.ChkTopMost.Size = new System.Drawing.Size(72, 16);
this.ChkTopMost.TabIndex = 0;
this.ChkTopMost.Text = "窗口置顶";
this.ChkTopMost.UseVisualStyleBackColor = true;
//
// groupBox7
//
this.groupBox7.Controls.Add(this.RbDefaultButton3);
this.groupBox7.Controls.Add(this.RbDefaultButton2);
this.groupBox7.Controls.Add(this.RbDefaultButton1);
this.groupBox7.Location = new System.Drawing.Point(12, 291);
this.groupBox7.Name = "groupBox7";
this.groupBox7.Size = new System.Drawing.Size(111, 119);
this.groupBox7.TabIndex = 6;
this.groupBox7.TabStop = false;
this.groupBox7.Text = "默认按钮";
//
// RbDefaultButton3
//
this.RbDefaultButton3.AutoSize = true;
this.RbDefaultButton3.Location = new System.Drawing.Point(15, 87);
this.RbDefaultButton3.Name = "RbDefaultButton3";
this.RbDefaultButton3.Size = new System.Drawing.Size(59, 16);
this.RbDefaultButton3.TabIndex = 2;
this.RbDefaultButton3.Text = "第三个";
this.RbDefaultButton3.UseVisualStyleBackColor = true;
//
// RbDefaultButton2
//
this.RbDefaultButton2.AutoSize = true;
this.RbDefaultButton2.Location = new System.Drawing.Point(15, 54);
this.RbDefaultButton2.Name = "RbDefaultButton2";
this.RbDefaultButton2.Size = new System.Drawing.Size(59, 16);
this.RbDefaultButton2.TabIndex = 1;
this.RbDefaultButton2.Text = "第二个";
this.RbDefaultButton2.UseVisualStyleBackColor = true;
//
// RbDefaultButton1
//
this.RbDefaultButton1.AutoSize = true;
this.RbDefaultButton1.Checked = true;
this.RbDefaultButton1.Location = new System.Drawing.Point(15, 21);
this.RbDefaultButton1.Name = "RbDefaultButton1";
this.RbDefaultButton1.Size = new System.Drawing.Size(59, 16);
this.RbDefaultButton1.TabIndex = 0;
this.RbDefaultButton1.TabStop = true;
this.RbDefaultButton1.Text = "第一个";
this.RbDefaultButton1.UseVisualStyleBackColor = true;
//
// BtnCreate
//
this.BtnCreate.ForeColor = System.Drawing.Color.White;
this.BtnCreate.Location = new System.Drawing.Point(472, 431);
this.BtnCreate.Name = "BtnCreate";
this.BtnCreate.Size = new System.Drawing.Size(81, 33);
this.BtnCreate.TabIndex = 7;
this.BtnCreate.Text = "生成";
this.BtnCreate.UseVisualStyleBackColor = true;
this.BtnCreate.Click += new System.EventHandler(this.BtnCreate_Click);
//
// groupBox5
//
this.groupBox5.Controls.Add(this.radioButton6);
this.groupBox5.Location = new System.Drawing.Point(405, 233);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(148, 177);
this.groupBox5.TabIndex = 8;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "对话框风格";
//
// radioButton6
//
this.radioButton6.AutoSize = true;
this.radioButton6.Checked = true;
this.radioButton6.Location = new System.Drawing.Point(15, 24);
this.radioButton6.Name = "radioButton6";
this.radioButton6.Size = new System.Drawing.Size(71, 16);
this.radioButton6.TabIndex = 0;
this.radioButton6.TabStop = true;
this.radioButton6.Text = "系统默认";
this.radioButton6.UseVisualStyleBackColor = true;
//
// FrmMessageBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(565, 476);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.BtnCreate);
this.Controls.Add(this.groupBox7);
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.GroupResult);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "FrmMessageBox";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "对话框生成";
this.Load += new System.EventHandler(this.FrmMessageBox_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.GroupResult.ResumeLayout(false);
this.GroupResult.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.groupBox7.ResumeLayout(false);
this.groupBox7.PerformLayout();
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton RbIconError;
private System.Windows.Forms.RadioButton RbIconWarning;
private System.Windows.Forms.RadioButton RbIconQuestion;
private System.Windows.Forms.RadioButton RbIconInformation;
private System.Windows.Forms.RadioButton RbIconNone;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.CheckBox ChkTitleIsPram;
private ryControls.RyComboBox CbbTitle;
private System.Windows.Forms.GroupBox groupBox3;
private ryControls.TextBoxEx2 TxtContent;
private System.Windows.Forms.CheckBox ChkContentIsPram;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.RadioButton RbBtnAbortRetryIgnore;
private System.Windows.Forms.RadioButton RbBtnRetryCancel;
private System.Windows.Forms.RadioButton RbBtnYesNoCancel;
private System.Windows.Forms.RadioButton RbBtnYesNo;
private System.Windows.Forms.RadioButton RbBtnOKCancel;
private System.Windows.Forms.RadioButton RbBtnOK;
private System.Windows.Forms.GroupBox GroupResult;
private System.Windows.Forms.GroupBox groupBox6;
private System.Windows.Forms.CheckBox ChkTopMost;
private System.Windows.Forms.GroupBox groupBox7;
private System.Windows.Forms.RadioButton RbDefaultButton3;
private System.Windows.Forms.RadioButton RbDefaultButton2;
private System.Windows.Forms.RadioButton RbDefaultButton1;
private ryControls.ButtonEx BtnCreate;
private System.Windows.Forms.CheckBox ChkResultNo;
private System.Windows.Forms.CheckBox ChkResultYes;
private System.Windows.Forms.CheckBox ChkResultIgnore;
private System.Windows.Forms.CheckBox ChkResultRetry;
private System.Windows.Forms.CheckBox ChkResultAbort;
private System.Windows.Forms.CheckBox ChkResultCancel;
private System.Windows.Forms.CheckBox ChkResultOK;
private System.Windows.Forms.GroupBox groupBox5;
private System.Windows.Forms.RadioButton radioButton6;
}
}