Dirkster.WSF
1.1.0
See the version list below for details.
dotnet add package Dirkster.WSF --version 1.1.0
NuGet\Install-Package Dirkster.WSF -Version 1.1.0
<PackageReference Include="Dirkster.WSF" Version="1.1.0" />
paket add Dirkster.WSF --version 1.1.0
#r "nuget: Dirkster.WSF, 1.1.0"
// Install Dirkster.WSF as a Cake Addin #addin nuget:?package=Dirkster.WSF&version=1.1.0 // Install Dirkster.WSF as a Cake Tool #tool nuget:?package=Dirkster.WSF&version=1.1.0
Windows Shell Foundation (WSF)
<h2><img src="https://github.com/Dirkster99/WSF/blob/master/ProjectIcon.png?raw=true" height="64"/> Overview</h2>
This project implements an open source Windows Shell data provider, which is necessary to display information related to the Windows system structure in an Application. This library is the core of a Metro Breadcrumb control implemented in a different project.
This implementation targets Windows 10 but should also be good for support on Vista and later (Windows 7-8).
Parts of this project were originally developed by <b>Leung Yat Chun Joseph <a href="https://github.com/lycj">lycj</a></b> in his FileExplorer application originating from CodePlex and <a href="https://www.codeproject.com/Members/Fainx">CodeProject</a>.
The implementation of the Windows Shell Foundation in this WSF project is based on LYCJ's interfaces but completely refactored in terms of models and classes using SharpShell as a base of most things that are there.
Finding all children (eg: 'This PC') under the Desktop root is as complicated as this:
using WSF;
using WSF.IDs;
foreach (var item in Browser.GetChildItems(KF_IID.ID_FOLDERID_Desktop))
{
Console.WriteLine("Name '{0}' SpecialPathId '{1}' PathFileSystem '{2}'",
item.Name, item.SpecialPathId, item.PathFileSystem);
}
The Name attribute is localized (it should be "This PC" in English and "Dieser PC" in German).
More information about the Windows Shell.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Dirkster.WSF:
Package | Downloads |
---|---|
Javi.ExplorerTreeView
This package provides a Windows Explorer application navigation like usercontrol for WPF. The usercontrol inherits from the standard WPF treeview and can be styled like a basic treeview. Follow the link to the project site which leads to the github repository for this package to see some sample screens. |
|
WolvenKit.ExplorerControl
Provides a WPF/MVVM AutoComplete control |
GitHub repositories
This package is not used by any popular GitHub repositories.
Breaking change for next Generation of IDirectoryBrowser with lazy loading properties