Browse by Tags
All Tags » Columns » Code-Behind (RSS)
-
I have a combobox in the TitleTemplate of a grid. When a button click event fires, I want to loop through all of the comboboxes created by the TitleTemplate (x:Name=''ThisComboBox'' in the XAML below). Can you please tell me how access these comboboxes in the code-behind? (The XAML is listed below):
<xcdg:DataGridControl ...
-
Got it:
List<String> itemList = new List<String>(); itemList.Add(''NW''); itemList.Add(''N''); ...
|
|
|
|