Reputation: 4288
I downloaded a project that has a reference to Microsoft.Windows.Design.dll, but it's not on my system. Where can I get this package?
using Microsoft.Windows.Design.PropertyEditing;
Upvotes: 2
Views: 3328
Reputation: 141668
That namespace is typically found in the Microsoft.Windows.Design.Interaction.dll
assembly, not Microsoft.Windows.Design.dll
.
For example, the NewItemFactory
class:
Namespace: Microsoft.Windows.Design.PropertyEditing
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
Upvotes: 2