bohdan_trotsenko
bohdan_trotsenko

Reputation: 5357

Is there a WPF control which will show a list of files in an Explorer-like view?

I often need to display a list of files to the user, say, as a result of a search query.

Typically I describe my own simple DataTemplate for FileInfo. But I'm lazy to re-implement all the Explorer's functionality: the Views, Sorting, Context Menus and drag&drop.

I feel like the problem is common and someone has already assembled a good library for this purpose.

Upvotes: 5

Views: 1540

Answers (3)

Sonorx
Sonorx

Reputation: 1439

You may look over controls in Shell MegaPack: this FolderView control and this FileView control.

Or look over this article and control.

Upvotes: 2

Giorgi
Giorgi

Reputation: 30873

Windows Api Code Pack comes with a user control (ExplorerBrowser) which you can use directly in your application.

Upvotes: 1

Akash Kava
Akash Kava

Reputation: 39916

Have you checked Windows API CodePack it had some WPF sample with explore functionality.

Upvotes: 5

Related Questions