vote up 2 vote down star

Hi,

I am designing a listbox and I want to have design time data in it.

If have a class in my namespace, how do I instantiate and object of that class in the Resources of the user control XAML please?

Malcolm

flag

47% accept rate

1 Answer

vote up 2 vote down
<UserControl.Resources>
    <my:CustomObject xmlns:my="clr-namespace:MyNamespace" 
                     x:Key="MyCustomObj"
                     Property="Value"
    />
</UserControl.Resources>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.