117 lines
4.6 KiB
C#
117 lines
4.6 KiB
C#
|
|
namespace HexExplorer
|
|
{
|
|
partial class FrmSaveDialog
|
|
{
|
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|
this.lbFiles = new System.Windows.Forms.ListBox();
|
|
this.btnSave = new System.Windows.Forms.Button();
|
|
this.btnDiscard = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 20);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(187, 15);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "如下文件未保存,请确认:";
|
|
//
|
|
// lbFiles
|
|
//
|
|
this.lbFiles.FormattingEnabled = true;
|
|
this.lbFiles.HorizontalScrollbar = true;
|
|
this.lbFiles.ItemHeight = 15;
|
|
this.lbFiles.Location = new System.Drawing.Point(12, 43);
|
|
this.lbFiles.Name = "lbFiles";
|
|
this.lbFiles.Size = new System.Drawing.Size(406, 214);
|
|
this.lbFiles.TabIndex = 1;
|
|
//
|
|
// btnSave
|
|
//
|
|
this.btnSave.Location = new System.Drawing.Point(15, 272);
|
|
this.btnSave.Name = "btnSave";
|
|
this.btnSave.Size = new System.Drawing.Size(126, 42);
|
|
this.btnSave.TabIndex = 2;
|
|
this.btnSave.Text = "全部保存";
|
|
this.btnSave.UseVisualStyleBackColor = true;
|
|
this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
|
|
//
|
|
// btnDiscard
|
|
//
|
|
this.btnDiscard.Location = new System.Drawing.Point(153, 272);
|
|
this.btnDiscard.Name = "btnDiscard";
|
|
this.btnDiscard.Size = new System.Drawing.Size(126, 42);
|
|
this.btnDiscard.TabIndex = 2;
|
|
this.btnDiscard.Text = "全部丢弃";
|
|
this.btnDiscard.UseVisualStyleBackColor = true;
|
|
this.btnDiscard.Click += new System.EventHandler(this.BtnDiscard_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(291, 272);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(126, 42);
|
|
this.btnCancel.TabIndex = 2;
|
|
this.btnCancel.Text = "取消";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
|
|
//
|
|
// FrmSaveDialog
|
|
//
|
|
this.AcceptButton = this.btnSave;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(430, 331);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnDiscard);
|
|
this.Controls.Add(this.btnSave);
|
|
this.Controls.Add(this.lbFiles);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "FrmSaveDialog";
|
|
this.Text = "请确认";
|
|
this.Load += new System.EventHandler(this.FrmSaveDialog_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.ListBox lbFiles;
|
|
private System.Windows.Forms.Button btnSave;
|
|
private System.Windows.Forms.Button btnDiscard;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
}
|
|
} |