Browse by Tags
All Tags » Columns » Code-Behind (RSS)
-
Hello,
I am using Model View ViewModel pattern. I have a button inside a DataCell of Xceed DataGrid. I want to use DelegateCommand to handle the click event of the button.
Also, I dont want to write anything for the same in my Code Behind. I want everything to reside in my ViewModel.
How can this be achieved. I thought of RoutedEvents / ...
-
Hi,
I have successfully bound the column.visible property for my grid using code behind as per a suggestion in another thread like this:
BindingOperations.SetBinding(this.myGrid.Columns[index], Column.VisibleProperty, new Binding() { Source = DataContext, ...
-
Hi,
I am binding the DataGridControl from code behind using datagridcollectionview.....Suppose my datatable contains 5 columns . Now in the xceed grid i want to display the values of 1st and 3rd column in the same header i.e. in one column . How can i achieve this ?????
-
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''); ...
|
|
|
|