Form1.Designer.cs
上传用户:idontwrong
上传日期:2022-04-03
资源大小:13k
文件大小:3k
- namespace FileNameManager
- {
- partial class Form1
- {
- /// <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.tvFolders = new System.Windows.Forms.TreeView();
- this.lvFiles = new System.Windows.Forms.ListView();
- this.SuspendLayout();
- //
- // tvFolders
- //
- this.tvFolders.Location = new System.Drawing.Point(12, 12);
- this.tvFolders.Name = "tvFolders";
- this.tvFolders.Size = new System.Drawing.Size(254, 271);
- this.tvFolders.TabIndex = 0;
- this.tvFolders.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvFolders_AfterSelect);
- this.tvFolders.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.tvFolders_AfterExpand);
- //
- // lvFiles
- //
- this.lvFiles.Location = new System.Drawing.Point(272, 12);
- this.lvFiles.Name = "lvFiles";
- this.lvFiles.Size = new System.Drawing.Size(245, 271);
- this.lvFiles.TabIndex = 1;
- this.lvFiles.UseCompatibleStateImageBehavior = false;
- this.lvFiles.View = System.Windows.Forms.View.List;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(529, 295);
- this.Controls.Add(this.lvFiles);
- this.Controls.Add(this.tvFolders);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
- this.MaximizeBox = false;
- this.Name = "Form1";
- this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
- this.Text = "Form1";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TreeView tvFolders;
- private System.Windows.Forms.ListView lvFiles;
- }
- }