'{DependencyProperty.UnsetValue}' is not a valid value for property 'FocusVisualStyle'

后端 未结 4 826
广开言路
广开言路 2021-01-11 09:36

I have a weird error I\'m trying to debug with no luck.

I have subclassed hwndhost showing some content, I have the following function in that class to set to fullsc

4条回答
  •  一生所求
    2021-01-11 10:07

    This can happen when a Style is pointing to a StaticResource that does NOT exist.

    This xaml was failing:

    
        
    
    

    The error was:

    System.InvalidOperationException: ''{DependencyProperty.UnsetValue}' is not a valid value for property 'Height'.'

    When I added the missing StaticResource, the problem went away.

提交回复
热议问题