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

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