The following code on displays the {Binding text} and the dependency property for Sprites does not run the propertyvaluechanged for text runs but not for sprites.

<ItemsControl x:Name="AnswerListBox" ItemsSource="{Binding Answers}" ScrollViewer.VerticalScrollBarVisibility="Disabled" >
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <local:spriteRadioButton Text="{Binding text}" Sprites="{Binding Path=DataContext.UISprites, ElementName=questionField}" GroupName="{Binding Path=DataContext.QuestionTitle, ElementName=questionField}" IsChecked="{Binding selected}" />
        </DataTemplate>
    </ItemsControl.ItemTemplate>
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <toolkit:WrapPanel/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
</ItemsControl>

if i don't use an itemspaneltemplate then the properties work as expected.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

At the moment you're using the default "OneWay" binding mechanism. This means that your object can update the UI but the UI cannot update the object.

Your binding should use "TwoWay" binding in order to allow the UI to notify the object of changes:

<DataTemplate>
    <local:spriteRadioButton Text="{Binding text,Mode=TwoWay}" Sprites="{Binding Path=DataContext.UISprites, ElementName=questionField,Mode=TwoWay}" GroupName="{Binding Path=DataContext.QuestionTitle, ElementName=questionField,Mode=TwoWay}" IsChecked="{Binding selected,Mode=TwoWay}" />
</DataTemplate>

Keep in mind, these changes will update your Answers object. If you want to change the Answers object itself this too will need to be marked as TwoWay binding as well.

link|improve this answer
the text, sprites and groupname don't need updated just the checked value. but if i change the object, the checking doesn't happen. do i have to refresh the datacontext? – Joseph Le Brech Aug 26 '11 at 8:15
When you say the object, do you mean the "Answer" object? Your "Answer" object will need to implement INotifyPropertyChanged. This means that when the you set the "selected" property to true that the NotifyPropertyChanged event is raised. – Faster Solutions Aug 30 '11 at 12:52
feedback

Your Answer

 
or
required, but never shown

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