google-code-export / wipflash

Automatically exported from code.google.com/p/wipflash
1 stars 1 forks source link

Clicking on a checkbox within a list view #41

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Given this xaml, allow me to select / read a checkbox on a row matching the id:

<ListView Name="myListView">
    <ListView.View>
        <GridView>                           
            <GridViewColumn Header="Id" DisplayMemberBinding="{Binding Id}" />
            <GridViewColumn Header="Enabled">
                <GridViewColumn.CellTemplate>
                    <DataTemplate>
                        <CheckBox IsEnabled="False" IsChecked="{Binding IsEnabled}"/>
                    </DataTemplate>
                </GridViewColumn.CellTemplate>
            </GridViewColumn>
            <GridViewColumn Header="Name" DisplayMemberBinding="{Binding Name}" />
        </GridView>
    </ListView.View>
</ListView>  

Original issue reported on code.google.com by francisc...@gmail.com on 19 Jul 2010 at 1:51

GoogleCodeExporter commented 9 years ago

Original comment by featheredwings@gmail.com on 19 Jul 2010 at 3:09

GoogleCodeExporter commented 9 years ago

Original comment by featheredwings@gmail.com on 26 Jul 2010 at 11:34