vote up 0 vote down star

Hi, im trying to style a column in my datagrid so it would fit %100 to the width of screen. This is my first ever learn while creating style project and im stuck.

i bind data to my grid with

        DataTable dt = new LoadGenres().Load(strFullPathToMyFile).Tables[0];
        genreGrid.DataSource = dt;


LoadGenres uses below xml to create a dataset


<?xml version="1.0" encoding="utf-8"?>
<list>
<genre>Top 500</genre>
<genre>70s</genre>
<genre>80s</genre>
</list>


that works fine but on screen i get below image

alt text

how can i get columns to fit %100 of the grid?

thanks

flag

5 Answers

vote up 0 vote down

img didnt work. this si second take.

http://img17.imageshack.us/img17/7054/20090306190547.png' border='0'/>

link|flag
vote up 0 vote down

Maybe this link is of some help.

link|flag
vote up 0 vote down

thanks, i now got below code but it has no effect on column width

        DataTable dt = new LoadGenres().Load(strFullPathToMyFile).Tables[0];        genreGrid.DataSource = dt;            
        DataGridTableStyle ts1 = new DataGridTableStyle();
        ts1.MappingName = dt.TableName.ToString();
        DataGridColumnStyle textCol1 = new DataGridTextBoxColumn();
        textCol1.MappingName = dt.Columns[0].ColumnName.ToString();
        textCol1.HeaderText = "genre";
        textCol1.Width = 300;
        ts1.GridColumnStyles.Add(textCol1);
link|flag
vote up 0 vote down

above code is in

MainForm_Load

section but even if i put it in

InitializeComponent()

it still doesnt effect column width

link|flag
vote up 0 vote down

got it with

DataTable myTable = new DataTable(); myTable = new LoadGenres().Load(strFullPathToMyFile).Tables[0]; genreGrid.DataSource = myTable; DataGridTableStyle tableStyle = new DataGridTableStyle(); tableStyle.MappingName = myTable.TableName.ToString(); DataGridTextBoxColumn tbcName = new DataGridTextBoxColumn(); tbcName.Width = Screen.PrimaryScreen.WorkingArea.Width; tbcName.MappingName = myTable.Columns[0].ColumnName.ToString(); //tbcName.HeaderText = myTable.Columns[0].ColumnName.ToString(); tableStyle.GridColumnStyles.Add(tbcName); genreGrid.TableStyles.Clear(); genreGrid.TableStyles.Add(tableStyle);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.