vote up 0 vote down star

I am trying to implement a wpf user control that binds a text box to a list of doubles using a converter. How can i set the instance of user control to be the converter parameter?

the code for the control is shown below

Thanks

<UserControl x:Class="BaySizeControl.BaySizeTextBox"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
    xmlns:local="clr-namespace:BaySizeControl"
    >
    <UserControl.Resources>
        <local:BayListtoStringConverter x:Key="BaySizeConverter"/>
    </UserControl.Resources>
    <Grid>

        <TextBox  Name="Textbox_baysizes" 
                  Text="{Binding RelativeSource={RelativeSource self},
                                Path=Parent.Parent.BaySizeItemsSource, 
                                Converter={StaticResource BaySizeConverter}}"
                  />
    </Grid>
</UserControl>
flag

70% accept rate

2 Answers

vote up 0 vote down

I would name the control and then bind using ElementName:

<UserControl x:Class="BaySizeControl.BaySizeTextBox"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
    xmlns:local="clr-namespace:BaySizeControl"
    Name="Foobar"
    >
    <UserControl.Resources>
        <local:BayListtoStringConverter x:Key="BaySizeConverter"/>
    </UserControl.Resources>
    <Grid>

        <TextBox  Name="Textbox_baysizes" 
                  Text="{Binding RelativeSource={RelativeSource self},
                                Path=Parent.Parent.BaySizeItemsSource, 
                                Converter={StaticResource BaySizeConverter,
                                ConverterParameter={Binding ElementName=Foobar} }}"
                  />
    </Grid>
</UserControl>

No, wait, that won't work because the ConverterParameter is not a Dependency Property, nor is the Binding a DependencyObject. A ReleativeSource markup extension should do what you want, though I've not used it nested inside other MarkupExtension - perhaps it is not well behaved in this case:

<TextBox  Name="Textbox_baysizes" 
                      Text="{Binding RelativeSource={RelativeSource self},
                                    Path=Parent.Parent.BaySizeItemsSource, 
                                    Converter={StaticResource BaySizeConverter,
                                    ConverterParameter={RelativeSource self} }}"
                      />
link|flag
I have tried this method already. The parameter that is passed is of type System.Windows.Data.RelativeSource. Not BaySizeTextBox as expected. – Dave Turvey Dec 18 '08 at 14:49
We're not after "self", try "{RelativeSource FindAncestor, AncestorType={x:Type UserControl}}". – Daniel Paull Dec 18 '08 at 22:13
vote up 0 vote down

The parameters are for constants needed by your converter. To provide an object instance to your converter, you can use MultiBinding.

Note: For this solution to work, you also need to modify your converter to implement IMultiValueConverter instead of IValueConverter. Fortunately, the modifications involved are fairly little. You will can add a validation for the number of values provided to your converter, 2 in your case.

<TextBox Name="Textbox_baysizes">
    <TextBox.Text>
        <MultiBinding Converter="{StaticResource BaySizeConverter}">
            <Binding RelativeSource="{RelativeSource self}" Path="Parent.Parent.BaySizeItemsSource"/>
            <Binding ElementName="Textbox_baysizes"/>
        </MultiBinding>
    </TextBox.Text>
</TextBox>
link|flag
Of course you can pass object reference as converter parameters - true that it must be thought of as a constant as WPF offers no way to have the converter parameter re-bind once set, but that doesn't mean that it can't be an object reference! – Daniel Paull Dec 18 '08 at 13:50
@Frederic: I get an error when trying this code. "Property 'Converter' does not support values of type 'BaySizeControl.BayListtoStringConverter'". Will my converter require modification to work with this solution? – Dave Turvey Dec 18 '08 at 14:53
@Daniel Paull: That sounds like it might work. could you please elaborate on this? thanks – Dave Turvey Dec 18 '08 at 14:54
@Dave - have a look at my blog on "John Conway's Game of Life in XAML/WPF using embedded Python" (thinkbottomup.com.au/site/blog/…). In the "A View of the Board" section I pass an array of objects as the converter parameter. Hope that helps. – Daniel Paull Dec 18 '08 at 22:16

Your Answer

Get an OpenID
or

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