Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got a list of items that are shown in a ListView. For those items exist two different DataTemplates. One for editting, the other for plain viewing. With a DataTemplateSelektor I can initially select the appropiate template by evaluating a property on the bound item. But I also want the user to be able to change the template by selecting an item. How can i toggle the template for a specific item after Initial Display? In wpf I would use something like a DataTrigger But there seems to be nothing like that in WinRT.

The xaml:

<DataTemplate x:Key="ViewMode">
    <TextBlock Text="{Binding Index}" />
</DataTemplate>

<DataTemplate x:Key="EditMode">
     <ComboBox SelectedIndex="{Binding Index}"
                  Width="100">
        <ComboBoxItem>Item1</ComboBoxItem>
        <ComboBoxItem>Item2</ComboBoxItem>
        <ComboBoxItem>Item3</ComboBoxItem>
    </ComboBox>
</DataTemplate>

<local:ModeSelekter Edit="{StaticResource EditMode}"
                        View="{StaticResource ViewMode}"
                        x:Key="sel" />

<ListView ItemTemplateSelector="{StaticResource sel}">
    <local:MyClass Index="0" />
    <local:MyClass Index="1"
                    IsEditable="True" />
    <local:MyClass Index="2" />
</ListView>

The code

class MyClass
{
    public bool IsEditable { get; set; }
    public int Index { get; set; }
}

class ModeSelekter : DataTemplateSelector
{
    public DataTemplate View { get; set; }
    public DataTemplate Edit { get; set; }

    protected override DataTemplate SelectTemplateCore(object item, DependencyObject container)
    {
        return ((MyClass)item).IsEditable ? Edit : View;
    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.