------ #### SuperDesign V3.0.2412.2001 - *.[新增]新增程序更新日志设置和自动发布功能。 - *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
119 lines
5.4 KiB
C#
119 lines
5.4 KiB
C#
namespace SuperDesign.Tools.SmartEditor
|
|
{
|
|
partial class FrmSaveMsg
|
|
{
|
|
/// <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(FrmSaveMsg));
|
|
this.BtnCancel = new ryControls.ButtonEx();
|
|
this.BtnNoSave = new ryControls.ButtonEx();
|
|
this.BtnSave = new ryControls.ButtonEx();
|
|
this.labelTx1 = new ryControls.LabelTx();
|
|
this.SuspendLayout();
|
|
//
|
|
// BtnCancel
|
|
//
|
|
this.BtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.BtnCancel.BaseColor = System.Drawing.Color.Gray;
|
|
this.BtnCancel.ColorGradient = true;
|
|
this.BtnCancel.Location = new System.Drawing.Point(314, 147);
|
|
this.BtnCancel.Name = "BtnCancel";
|
|
this.BtnCancel.Size = new System.Drawing.Size(88, 31);
|
|
this.BtnCancel.TabIndex = 3;
|
|
this.BtnCancel.Text = "取消";
|
|
this.BtnCancel.UseDefSkin = false;
|
|
this.BtnCancel.UseVisualStyleBackColor = true;
|
|
this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
|
|
//
|
|
// BtnNoSave
|
|
//
|
|
this.BtnNoSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.BtnNoSave.BaseColor = System.Drawing.Color.Red;
|
|
this.BtnNoSave.ColorGradient = true;
|
|
this.BtnNoSave.Location = new System.Drawing.Point(220, 147);
|
|
this.BtnNoSave.Name = "BtnNoSave";
|
|
this.BtnNoSave.Size = new System.Drawing.Size(88, 31);
|
|
this.BtnNoSave.TabIndex = 2;
|
|
this.BtnNoSave.Text = "不保存";
|
|
this.BtnNoSave.UseDefSkin = false;
|
|
this.BtnNoSave.UseVisualStyleBackColor = true;
|
|
this.BtnNoSave.Click += new System.EventHandler(this.BtnNoSave_Click);
|
|
//
|
|
// BtnSave
|
|
//
|
|
this.BtnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.BtnSave.BaseColor = System.Drawing.Color.Green;
|
|
this.BtnSave.ColorGradient = true;
|
|
this.BtnSave.Location = new System.Drawing.Point(126, 147);
|
|
this.BtnSave.Name = "BtnSave";
|
|
this.BtnSave.Size = new System.Drawing.Size(88, 31);
|
|
this.BtnSave.TabIndex = 1;
|
|
this.BtnSave.Text = "保存";
|
|
this.BtnSave.UseDefSkin = false;
|
|
this.BtnSave.UseVisualStyleBackColor = true;
|
|
this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
|
|
//
|
|
// labelTx1
|
|
//
|
|
this.labelTx1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.labelTx1.LineDistance = 5;
|
|
this.labelTx1.Location = new System.Drawing.Point(13, 9);
|
|
this.labelTx1.Name = "labelTx1";
|
|
this.labelTx1.Size = new System.Drawing.Size(392, 19);
|
|
this.labelTx1.TabIndex = 0;
|
|
this.labelTx1.Text = "提示文本";
|
|
//
|
|
// FrmSaveMsg
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(418, 190);
|
|
this.Controls.Add(this.BtnCancel);
|
|
this.Controls.Add(this.BtnNoSave);
|
|
this.Controls.Add(this.BtnSave);
|
|
this.Controls.Add(this.labelTx1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FrmSaveMsg";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "是否保存?";
|
|
this.TopMost = true;
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmSaveMsg_FormClosing);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private ryControls.ButtonEx BtnSave;
|
|
private ryControls.ButtonEx BtnNoSave;
|
|
private ryControls.ButtonEx BtnCancel;
|
|
public ryControls.LabelTx labelTx1;
|
|
}
|
|
} |