This question is locked. New answers and comments are not allowed.
Hi,
The following code does not collapse the RadSplitContainer. However if I execute the same code on a button click event it works. I guess the RadDocking1_Loaded event happens to early for the code to be effective. Is there any event after RadDocking1_Loaded that I can use? Also, I tried to make the RadSplitContainers collapsed in the xaml and that did not work either.
Thanks
Rich
void RadDocking1_Loaded(object sender, RoutedEventArgs e)
{
SplitHostGroup2.Visibility = System.Windows.Visibility.Collapsed;
SplitHostGroup3.Visibility = System.Windows.Visibility.Collapsed;
}