I tried anchor the datagridview to top, left, right and it works fine when its not maximixed, but when i maximize the form and then minimize it again datagridview don't resize.
0
votes
1 Answers
0
votes
You can use Dock property as below:
- Fill: If you want your datagridview always display in full screen mode.
- TOP: If you want your datagridview always show at the top.
- Left: If you want your datagridview always show at the left.
- Right: If you want your datagridview always show at the right.
- Bottom: If you want your datagridview always show at the bottom.
I hope this will help you.