开发者

CheckBox state of a CellTemplate in ListView

i am trying to use styles to prevent from repeting code, by putting them in a Resource Disctionary.

My question is, when we have a Grid开发者_StackOverflow社区ViewColumn in a ListView, which one of the columns have a DataTemplate, and in that DataTemplate we have the CellTemplate with only a CheckBox, can we bind the CheckBox state when the DataTemplete is in a ResourceDictionary?

What i have is this in my XAML:

<ListView Name="listView">
    <ListView.View>
        <GridView AllowsColumnReorder="False">
            <GridViewColumn DisplayMemberPath="{Binding [1]}"/>
            <GridViewColumn DisplayMemberPath="{Binding [2]}"/>
            <GridViewColumn DisplayMemberPath="{Binding [4]}"/>
            <GridViewColumn DisplayMemberPath="{Binding [5]}"/>
            <GridViewColumn DisplayMemberPath="{Binding [6]}"/>
            <GridViewColumn DisplayMemberPath="{Binding [7]}"/>
            <GridViewColumn>
                <GridViewColumn.CellTemplate>
                    <DataTemplate>
                        <CheckBox IsThreeState="False" IsChecked="{Binding [8]}" Unchecked="CheckBox_Changed" Checked="CheckBox_Changed"/>
                    </DataTemplate>
                </GridViewColumn.CellTemplate>
            </GridViewColumn>
        </GridView>
    </ListView.View>
</ListView>

And i am trying to do something like this in the Resource Dictionary:

<DataTemplate x:Key="ListViewCheckboxCell">
    <StackPanel>
        <CheckBox IsThreeState="False" IsChecked="Make reference"/>
    </StackPanel>
</DataTemplate>

And the values in that column is always a bool.

Thanks in advance!


What you did seems correct. You'll now have to write

<GridViewColumn CellTemplate="{StaticResource ListViewCheckboxCell}" />

The template will be taken into account, you can leave exactly the same template than the original in your resource dictionary: The binding is dynamically resolved, so when the XAML will be read, bindings will automatically be set to the related object, following what you indicated

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜