Provide a dialog box to select installed app from local machine.

the selected item is Application User Model ID ,You can run it in the following way
- Run dialog
shell:appsfolder\xxx
- C#
System.Diagnostic.Process.Start("explorer.exe","shell:appsfolder\xxx");System.Diagnostic.Process.Start("explorer.exe","shell:appsfolder\Microsoft.Windows.MediaPlayer32");//open Windows Media PlayerAppsFolderDialog.mp4
PM>NuGet\Install-Package AppsFolderDialog -Version 0.0.1AppsFolderDialog.AppsFolderDialogappsFolderDialog=newAppsFolderDialog.AppsFolderDialog();varresult=awaitappsFolderDialog.ShowDialog();if(result){//this.listbox.ItemsSource = appsFolderDialog.SelectedPath.ToList();foreach(variteminappsFolderDialog.SelectedPath){switch(item.PathType){caseAppsFolderDialog.PathType.Absolute://AbsoluteSystem.Diagnostics.Process.Start(item.Path);break;caseAppsFolderDialog.PathType.AUMID://AUMIDSystem.Diagnostics.Process.Start("explorer.exe",item.Path);break;caseAppsFolderDialog.PathType.Folder://Folderbreak;default:break;}}}- modify dialog title
- append context menu
- use win32 native button