Leandro Alsina
Leandro Alsina

Reputation: 193

UWP - Is there a File Explorer control?

I'm writing an UWP app, in C# netcore. targeting min API 1809, with VS2019

I'm trying to add a ContentDialog that performs operations with storage files. And I want to add a FileExplorer control in that dialog. For selecting multiple files.

The Controls available in the XAML library, (and in the Community Toolkit Library) seems to lack the File Explorer Control. Like shown in the following image (from a very old software):

File explorer inside a dialog

I want to add to my app something like in the image. A Visual Control for displaying files and folders, and allow to select them. Does it exists? Please guys, I beg don't tell me to use the UWP TreeView Control because I think it sucks.

Thanks and regards!

Upvotes: 0

Views: 370

Answers (1)

Nico Zhu
Nico Zhu

Reputation: 32775

UWP - Is there a File Explorer control?

UWP does not has exactly the same control like above screenshot, but it has TreeView control that could implement similar feature. Please check this document for more detail. And we also provide Xaml Control Gallery app that you could refer.

Upvotes: 1

Related Questions