vote up 0 vote down star

Hi, all.

I'm trying to declare a resource in a WPF UserControl, and I'd like the resource to be an instance of a private inner class. How do I do this?

XAML:

<UserControl ...>
    <UserControl.Resources>
        <local:MyConverter x:Key="MyConverter" />
    </UserControl.Resources>
</UserControl>

Code Behind:

public partial class MyUserControl : UserControl 
{
    private class MyConverter : IValueConverter 
    {
        // convertion code...
    }
}
flag

1 Answer

vote up 0 vote down check

You can't do it if the class is private, you could make it internal instead

Regarding the declaration of an inner class in XAML, you should have a look at this discussion

link|flag
Thanks, I'll take a look. – matheus.emm Jun 17 at 16:23

Your Answer

Get an OpenID
or

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