There are a SplitContainer and couple of DataViewGrids. In Designer I docked DataViewGrids to Panel1 and Panel2 of SplitContainer respectively. So, in designer everithing seems to be OK. But when I start the program, the DataGridView seems like it's docked to the main form, because the size of the Grid is the main Form size. I use the Grids with bindings to DataSet. When I try to use not binded blanc Grids, everithing is ok. The grids size matches the splitContainer Panels sizes. That drives me insane:(

link|improve this question

0% accept rate
feedback

2 Answers

ok you should set dockstyle of grid to fill the panel as this

datagrid1.Dock=DockStyle.Fill;
link|improve this answer
Thanks for the reply. Put those expressions in the Form_Load, doesn't work. The dataGridViews has properties Dock and both of them are Fill. – moldov Nov 7 '11 at 4:10
feedback

So I resolved, that problem. I put that code after all data bindings of dataGRidView

dataGridViewPO.Dock = DockStyle.Fill;
dataGridViewPO.Parent = splitContainer1.Panel1;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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