嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
这是自己写的一个仿windows资源管理器,用到了ListView,TreeView等.其中每个功能都没有过想的那么简单,当然用不得也不一定是最优方法.大家可以自己写写练习练习.发布源代码,仅供参考.
namespace ExplorerTreeView
{
partial class frmDemo
{
/// <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.treeExplorer = new WilsonProgramming.ExplorerTreeView();
this.SuspendLayout();
//
// treeExplorer
//
this.treeExplorer.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeExplorer.Location = new System.Drawing.Point(0, 0);
this.treeExplorer.Name = "treeExplorer";
this.treeExplorer.Size = new System.Drawing.Size(274, 468);
this.treeExplorer.TabIndex = 0;
//
// frmDemo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(274, 468);
this.Controls.Add(this.treeExplorer);
this.Name = "frmDemo";
this.Text = "ExplorerTreeView Demo";
this.ResumeLayout(false);
}
#endregion
private WilsonProgramming.ExplorerTreeView treeExplorer;
}
}