Hello,
With the following resource definition
<ObjectDataProvider MethodName="GetValues" ObjectType="{x:Type sys:Enum}" x:Key="AccountTypeValues">
<ObjectDataProvider.MethodParameters>
<x:Type TypeName="domain:Account+AccountType" />
</ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
the designer complains that "Type 'Account+AccountType' was not found." However, the nested type exists and code complies and runs without a problem. Since the designer thinks the XAML is incorrect, it won't display a graphical rendition of the XAML.
What do I need to do to get the designer to recognize Account+AccountType as valid? I'd really like the visual part of the designer to work.
Thank you, Ben