1
vote
2answers
76 views
Using Mode=TwoWay and AutogenerateColumns=True in Silverlight 3 DataGrid
My List<BusinessObject> has some public properties that I want to bind to columns in a DataGrid. Unfortunately, the names of the public properties are not good and I may not even know what they …
0
votes
1answer
112 views
Programatically add ValidationRules to WPF DataGrid when autogenerating columns
I want to do this in the AutoGeneratingColumn event:
<my:DataGridTextColumn Header="CompanyName">
<my:DataGridTextColumn.Binding>
<Binding Path="CompanyName">
…
1
vote
1answer
49 views
ASP.NET 3.5 Gridview layout for each product type in DB
I'm trying to create a simple CMS-likeb backend app that uses TreeView for categories and GridView for product display/editing.
The problem that I'm experiencing lies within the fact that there is a …
0
votes
2answers
383 views
C# Datagridview - Turn off AutoGenerateColumns when binding to XML file?
I am binding an XML file to a DataGridView. I don't want the columns to be auto-generated, in fact I want to generate them myself. Is there a way of turning off the auto generating columns feature and …
1
vote
1answer
133 views
Change Order of columns
I am using gridView. I have 4 auto generated columns and 1 generated by my self. Now the column which i have generated is displayed first and then the auto generated columns.
I want to display auto …
1
vote
2answers
511 views
DataGridView Autogeneratecolumns as TextBox instead of label
How can I have a datagridview that will autogenerate a textbox instead of a label?
