Hello,
I have a very simple form that has this code:
public
partial
class
RadForm1 : Telerik.WinControls.UI.RadForm
{
public
RadForm1()
{
InitializeComponent();
ThemeResolutionService.ApplicationThemeName =
"Fluent"
;
}
private
void
radButton1_Click(
object
sender, EventArgs e)
{
SetStartForm(
false
);
}
private
void
SetStartForm(
bool
visible)
{
this
.radGroupBox1.Visible = visible;
}
private
void
radButton2_Click(
object
sender, EventArgs e)
{
SetStartForm(
true
);
}
}
At the start it call the SetStartForm() method that with a lot of other things hide the groupbox.
Well after a search when a user click again the button "Nuova Ricerca" I call again SetStartForm() but the components rendering remain with the border. Please see the video:
//video has been deleted due to sensitive data.
How can I solve that? Thanks