ListView GridView column
Posted
by plotnick
on Stack Overflow
See other posts from Stack Overflow
or by plotnick
Published on 2010-03-22T02:20:24Z
Indexed on
2010/03/22
2:21 UTC
Read the original article
Hit count: 413
I got a ListView with GridView and GridViewColumns in it.
<ListView>
<ListView.View>
<GridView>
<GridViewColumn>
<GridViewColumn.CellTemplate>
<DataTemplate>
<ComboBox />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
Now I want in my code to disable the Combobox or entire column. And I don't know how to do it. Help me please.
© Stack Overflow or respective owner