Browse by Tags
All Tags » Columns (RSS)
-
I am using the Xceed data grid in it's simplest form... no grouping, no editing, just row selection and column sorting. However, I can still drag the column headers around (left mouse click, hold, and drag). They don't do anything but it is a feature I would like to turn off so my user's won't be confused. How can I disable the dragging feature of ...
-
Got it:
List<String> itemList = new List<String>(); itemList.Add(''NW''); itemList.Add(''N''); ...
-
Gentlemen,
I have the following construct: MyCompany.MyProject.MyStaticClass.MyInstanceClassMyInstanceClass has the members ID and Description.MyInstanceClass also has a static MyStaticList that keeps a List<> of all instances of the class. This serves as the IEnumerable source for the datagrid.When I am binding my data, even with ...
-
1- you can do it this way://if starting from a DataTable reference.myDataGridControl.ItemsSource = new DataGridCollectionView( myDataTable.DefaultView );//directly from a DataViewmyDataGridControl.ItemsSource = new DataGridCollectionView( myDataView );2- You can specify to the DataGridControl NOT to create its columns automatically based on ...
|
|
|
|