I\'m facing some issues with a WPF binding to a static property. In my application there is a class called Globals which contains a static property
Ensure Globals.ThisAddIn
is public.
You may also get this if you are using a resource file in which case you also need to ensure the access modifier is set to Public
:
In output library project, you should ensure that the Resources.resx file's generator has been modified as PublicResXFileCodeGenerator instead of ResXFileGodeGenerator by default.
Replace following with...
This one