Click here to Skip to main content
15,878,809 members
Articles / Desktop Programming / Windows Forms

Ebook Shelf

Rate me:
Please Sign up or sign in to vote.
4.50/5 (4 votes)
2 Apr 2011MIT1 min read 34.7K   1.2K   23   1
Ebook Shelf works like resource manager
EbookShelf_1.0.6.png

Introduction

EbookShelf acts like the resource manager. It scans the directories that can be edited via config.ini to generate dynamic treeview. When the tree node is clicked, it also scans the files under such directory to generate dynamic listview. The files could be dragged from the listview then dropped to the treeview. The directory could be dragged / dropped in the treeview section. The file could be renamed and deleted, also the directory could be renamed, deleted and sub-directory created. The listview is in the smallicon view, so it needs to fix the small icons overlap issue via fired largeicon view first, then smallicon view.

Using the Code

Dynamically generated directories treeView:

  1. Declare Thread handler objTreeViewInitThread:
    C#
    Thread objTreeViewInitThread = null; 
  2. Create thread handler with callback function pointer m_treeViewInitProc:
    C#
    objTreeViewInitThread = new Thread(MainForm.m_treeViewInitProc);
    objTreeViewInitThread.IsBackground = true;
    objTreeViewInitThread.Start(this);
    objTreeViewInitThread.Join(); 
  3. Recursively travel directories tree:
    C#
    private void m_ListDirectory(TreeNode Parent, DirectoryInfo dir)
    {
        if (!dir.Exists) return;
        DirectoryInfo[] ChildDirectory;
        TreeNode node = new TreeNode();
        node.Name = dir.FullName;   // Directory full path
        node.Text = dir.Name;       // Directory folder name
        if (null == Parent)
        {
            treeView.Nodes.Add(node);
        }
        else
        {
             Parent.Nodes.Add(node);
        }
        ChildDirectory = dir.GetDirectories();
        foreach (DirectoryInfo dirInfo in ChildDirectory)
        {
             m_ListDirectory(node, dirInfo);
        }
    } 

Points of Interest

Thanks to IniParser, IconListManager, SHFileOperation to delete files and directories to trash developed by CodeProject members, I could do the stuff so quickly ^_^.

History

  • 1.0.6
    • Function:
      • Edit config.ini to set Directory
      • Support create, edit, delete and drag / drop category
      • Support edit, delete and drag / drop file
      • Support order by type and name
    • BUG:
      • It cannot refresh directories treeview or files listview when edited out of the application
      • Dragging / dropping categories, the target dropped node does not highlight
      • Click order by name first then click order by type, it failed to order by type

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Engineer
China China
An individual human existence should be like a river - small at first, narrowly contained within its banks, and rushing passionately past boulders and over waterfalls. Gradually the river grows wider, the banks recede, the waters flow more quietly, and in the end, without any visible break, they become merged in the sea, and painlessly lose their individual being.

Comments and Discussions

 
GeneralMy vote of 4 Pin
weituo862-Jun-11 14:53
weituo862-Jun-11 14:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.