資源簡介
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
using?System.IO;
namespace?MyExplore
{
????public?partial?class?MainFrm?:?Form
????{
????????public?MainFrm()
????????{
????????????InitializeComponent();
????????}
????????///?
????????///?加載驅動器
????????///?
????????private?void?LoadDrives()
????????{
????????????TreeNode?driver?=?new?TreeNode();
????????????driver.Text?=?“D:\\“;
????????????driver.Tag?=?“D:\\“;
????????????this.tvExplore.Nodes.Add(driver);
????????}
????????//窗體加載
????????private?void?MainFrm_Load(object?sender?EventArgs?e)
????????{
????????????//添加盤符
????????????LoadDrives();
????
評論
共有 條評論