Form1.Designer.cs
上传用户:idontwrong
上传日期:2022-04-03
资源大小:13k
文件大小:3k
源码类别:

TreeView控件

开发平台:

C#

  1. namespace FileNameManager
  2. {
  3.     partial class Form1
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// Clean up any resources being used.
  11.         /// </summary>
  12.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows Form Designer generated code
  22.         /// <summary>
  23.         /// Required method for Designer support - do not modify
  24.         /// the contents of this method with the code editor.
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.tvFolders = new System.Windows.Forms.TreeView();
  29.             this.lvFiles = new System.Windows.Forms.ListView();
  30.             this.SuspendLayout();
  31.             // 
  32.             // tvFolders
  33.             // 
  34.             this.tvFolders.Location = new System.Drawing.Point(12, 12);
  35.             this.tvFolders.Name = "tvFolders";
  36.             this.tvFolders.Size = new System.Drawing.Size(254, 271);
  37.             this.tvFolders.TabIndex = 0;
  38.             this.tvFolders.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvFolders_AfterSelect);
  39.             this.tvFolders.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.tvFolders_AfterExpand);
  40.             // 
  41.             // lvFiles
  42.             // 
  43.             this.lvFiles.Location = new System.Drawing.Point(272, 12);
  44.             this.lvFiles.Name = "lvFiles";
  45.             this.lvFiles.Size = new System.Drawing.Size(245, 271);
  46.             this.lvFiles.TabIndex = 1;
  47.             this.lvFiles.UseCompatibleStateImageBehavior = false;
  48.             this.lvFiles.View = System.Windows.Forms.View.List;
  49.             // 
  50.             // Form1
  51.             // 
  52.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  53.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  54.             this.ClientSize = new System.Drawing.Size(529, 295);
  55.             this.Controls.Add(this.lvFiles);
  56.             this.Controls.Add(this.tvFolders);
  57.             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  58.             this.MaximizeBox = false;
  59.             this.Name = "Form1";
  60.             this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  61.             this.Text = "Form1";
  62.             this.Load += new System.EventHandler(this.Form1_Load);
  63.             this.ResumeLayout(false);
  64.         }
  65.         #endregion
  66.         private System.Windows.Forms.TreeView tvFolders;
  67.         private System.Windows.Forms.ListView lvFiles;
  68.     }
  69. }