Hello,
Recently I've been trying to create an application that will work on both normal devices and on touchscreen devices, and trying to use the Scale(SizeF) function to scale all of the controls and rearrange them programmatically inside the forms.
Everything works fine for normal controls, but for the grid the Scale function is not working and the RadElement.ScaleTransform is making everything bigger but then a part of the grid is no longer visible (see screenshot below)
I've tried everything i could have thought of, i have to mention that my grid is set up like this:
radGridView1.MasterTemplate.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
Recently I've been trying to create an application that will work on both normal devices and on touchscreen devices, and trying to use the Scale(SizeF) function to scale all of the controls and rearrange them programmatically inside the forms.
Everything works fine for normal controls, but for the grid the Scale function is not working and the RadElement.ScaleTransform is making everything bigger but then a part of the grid is no longer visible (see screenshot below)
I've tried everything i could have thought of, i have to mention that my grid is set up like this:
radGridView1.MasterTemplate.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
radGridView1.MasterTemplate.BestFitColumns();
radGridView1.Dock = DockStyle.Fill; I've also tried setting the size of the grid manually but that didn't help also... Thank you, Emanuel Varga