Hi,
I am porting my Add-In to a Visual Studio package. One of my changes is to move the settings into the Visual Studio Options dialog, by implementing several Options Pages. This is well documented and easy to implement.
There are some changes to which I want to react immediately (and update my tool window).
I have figured out that I can handle this by overriding the OnApply method in DialogPage class and firing an event. This works fine, but I was surprised that I had to do it.
It there an 'official' way to react to changed options (for example a PropertyChanged event), or am I doing it right anyway?
Phil