StaticExtension value cannot be resolved

后端 未结 2 814
别那么骄傲
别那么骄傲 2020-12-28 11:39

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

相关标签:
2条回答
  • 2020-12-28 12:05

    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:

    0 讨论(0)
  • 2020-12-28 12:21

    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

    0 讨论(0)
提交回复
热议问题