I’m creating an Internet Explorer plugin using C#. I’ve been following a tutorial where the code imports a couple of classes that I don’t have available, namely:
using System.Windows;
using SHDocVw;
I realise I need to add the relevant components to my project but I’m not sure how to find the components that contain the classes. Perhaps there is a search somewhere?
Both of those examples are Namespaces that are located in assemblies that need to be reference. Luckily, adding those references are quite simple:
For System.Windows:
For SHDocVw: