I have a RadgridView
along with a button in a Form
Window
.When the button is clicked , it shows some hidden rows in RadGridView
.
I want the hidden rows to be showed when the Form window is maximized.
I am trying something like this in Form_Activated
method:
If Me.WindowState=2 Then
button1.PerformClick()
upon Debugging, I can see that the method that handles click event executes but nothing is being done in the Form Window i.e the columns are not showing up. Am I missing something? What should I do?