I've created a custom tools option page using the VS2005 .Addin method described here: http://msdn2.microsoft.com/library/b389wd38(en-us,vs.80).aspx
Now, I need to access the properties on my custom page in my addin. From the documentation in the "Controlling Tools Options Setting" section it seems like it is not valid to use the DTE.Properties(...) API to access my custom pages. How do I get access to those pages from my addin

accessing custom tools options settings
ja123ee
I know, it's a shameless plug.
joeller
EnvDTE.Properties props = application.
get_Properties("Environment", "General");I want to be able to do this:
EnvDTE.Properties props = application.get_Properties("My Custom Page", "My Custom SubItem");
Another option I can think of is to write my properties out to a property file, but I don't see how to listen for the 'OK' or 'Cancel' button events provided by the IDEs Tools Option page when I only provide a UserControl in the .Addin.
Larry Menard