170 lines
8.8 KiB
C#
170 lines
8.8 KiB
C#
namespace AutoPekage
|
||
{
|
||
partial class Form1
|
||
{
|
||
/// <summary>
|
||
/// 必需的设计器变量。
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// 清理所有正在使用的资源。
|
||
/// </summary>
|
||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Windows 窗体设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.components = new System.ComponentModel.Container();
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
||
this.lvFileList = new System.Windows.Forms.ListView();
|
||
this.cmsFileContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||
this.打开文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.移除文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.打开所在目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.ilFileList = new System.Windows.Forms.ImageList(this.components);
|
||
this.btnStart = new System.Windows.Forms.Button();
|
||
this.btnExit = new System.Windows.Forms.Button();
|
||
this.btnSettings = new System.Windows.Forms.Button();
|
||
this.cmsFileContextMenu.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// lvFileList
|
||
//
|
||
this.lvFileList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||
| System.Windows.Forms.AnchorStyles.Left)
|
||
| System.Windows.Forms.AnchorStyles.Right)));
|
||
this.lvFileList.ContextMenuStrip = this.cmsFileContextMenu;
|
||
this.lvFileList.LargeImageList = this.ilFileList;
|
||
this.lvFileList.Location = new System.Drawing.Point(0, 1);
|
||
this.lvFileList.Name = "lvFileList";
|
||
this.lvFileList.Size = new System.Drawing.Size(452, 328);
|
||
this.lvFileList.TabIndex = 0;
|
||
this.lvFileList.UseCompatibleStateImageBehavior = false;
|
||
this.lvFileList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.lvFileList_ItemCheck);
|
||
this.lvFileList.DoubleClick += new System.EventHandler(this.lvFileList_DoubleClick);
|
||
//
|
||
// cmsFileContextMenu
|
||
//
|
||
this.cmsFileContextMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
|
||
this.cmsFileContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.打开文件ToolStripMenuItem,
|
||
this.移除文件ToolStripMenuItem,
|
||
this.打开所在目录ToolStripMenuItem});
|
||
this.cmsFileContextMenu.Name = "cmsFileContextMenu";
|
||
this.cmsFileContextMenu.Size = new System.Drawing.Size(149, 70);
|
||
this.cmsFileContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.cmsFileContextMenu_Opening);
|
||
//
|
||
// 打开文件ToolStripMenuItem
|
||
//
|
||
this.打开文件ToolStripMenuItem.Name = "打开文件ToolStripMenuItem";
|
||
this.打开文件ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
|
||
this.打开文件ToolStripMenuItem.Text = "打开文件";
|
||
this.打开文件ToolStripMenuItem.Click += new System.EventHandler(this.打开文件ToolStripMenuItem_Click);
|
||
//
|
||
// 移除文件ToolStripMenuItem
|
||
//
|
||
this.移除文件ToolStripMenuItem.Name = "移除文件ToolStripMenuItem";
|
||
this.移除文件ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
|
||
this.移除文件ToolStripMenuItem.Text = "移除文件";
|
||
this.移除文件ToolStripMenuItem.Click += new System.EventHandler(this.移除文件ToolStripMenuItem_Click);
|
||
//
|
||
// 打开所在目录ToolStripMenuItem
|
||
//
|
||
this.打开所在目录ToolStripMenuItem.Name = "打开所在目录ToolStripMenuItem";
|
||
this.打开所在目录ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
|
||
this.打开所在目录ToolStripMenuItem.Text = "打开所在目录";
|
||
this.打开所在目录ToolStripMenuItem.Click += new System.EventHandler(this.打开所在目录ToolStripMenuItem_Click);
|
||
//
|
||
// ilFileList
|
||
//
|
||
this.ilFileList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
|
||
this.ilFileList.ImageSize = new System.Drawing.Size(48, 48);
|
||
this.ilFileList.TransparentColor = System.Drawing.Color.Transparent;
|
||
//
|
||
// btnStart
|
||
//
|
||
this.btnStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||
this.btnStart.Location = new System.Drawing.Point(41, 347);
|
||
this.btnStart.Name = "btnStart";
|
||
this.btnStart.Size = new System.Drawing.Size(75, 23);
|
||
this.btnStart.TabIndex = 2;
|
||
this.btnStart.Text = "开始打包";
|
||
this.btnStart.UseVisualStyleBackColor = true;
|
||
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
|
||
//
|
||
// btnExit
|
||
//
|
||
this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.btnExit.Location = new System.Drawing.Point(321, 347);
|
||
this.btnExit.Name = "btnExit";
|
||
this.btnExit.Size = new System.Drawing.Size(75, 23);
|
||
this.btnExit.TabIndex = 3;
|
||
this.btnExit.Text = "退出";
|
||
this.btnExit.UseVisualStyleBackColor = true;
|
||
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
|
||
//
|
||
// btnSettings
|
||
//
|
||
this.btnSettings.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
||
this.btnSettings.Location = new System.Drawing.Point(183, 347);
|
||
this.btnSettings.Name = "btnSettings";
|
||
this.btnSettings.Size = new System.Drawing.Size(75, 23);
|
||
this.btnSettings.TabIndex = 4;
|
||
this.btnSettings.Text = "设置";
|
||
this.btnSettings.UseVisualStyleBackColor = true;
|
||
this.btnSettings.Click += new System.EventHandler(this.btnSettings_Click);
|
||
//
|
||
// Form1
|
||
//
|
||
this.AllowDrop = true;
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(452, 382);
|
||
this.Controls.Add(this.btnSettings);
|
||
this.Controls.Add(this.btnExit);
|
||
this.Controls.Add(this.btnStart);
|
||
this.Controls.Add(this.lvFileList);
|
||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||
this.KeyPreview = true;
|
||
this.Name = "Form1";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
this.Text = "文件修改打包";
|
||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
|
||
this.Load += new System.EventHandler(this.Form1_Load);
|
||
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.Form1_DragDrop);
|
||
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.Form1_DragEnter);
|
||
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
|
||
this.cmsFileContextMenu.ResumeLayout(false);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.ListView lvFileList;
|
||
private System.Windows.Forms.ImageList ilFileList;
|
||
private System.Windows.Forms.ContextMenuStrip cmsFileContextMenu;
|
||
private System.Windows.Forms.ToolStripMenuItem 打开文件ToolStripMenuItem;
|
||
private System.Windows.Forms.ToolStripMenuItem 移除文件ToolStripMenuItem;
|
||
private System.Windows.Forms.ToolStripMenuItem 打开所在目录ToolStripMenuItem;
|
||
private System.Windows.Forms.Button btnStart;
|
||
private System.Windows.Forms.Button btnExit;
|
||
private System.Windows.Forms.Button btnSettings;
|
||
}
|
||
}
|
||
|