Posted 17 years ago
by Ron Gramann
I'm a new user of your Ribbon control (v 1.0.330.0) and am putting together my first project. I've followed your QuickStart tutorials and everything was working fine. I have a placeholder control where you have a RichTextBox control. And on the <ribbon:Tab Command="MyProject:ApplicationCommands.LoadMyUserControl" ...>
In code, this executes:
private void LoadMyUserControl_Execute(object sender, ExecutedRoutedEventArgs e)
{
placeholder.Content = null;
MyUserControl control = new MyUserControl();
placeholder.Content = control;
}
I have this setup for 5 tabs, each loading a different UserControl. So far, so good.
When I use the application the UserControls load as expected, then unpredictably the Tabs become unresponsive, no longer responding to mouse events. Also the ApplicationOptions button and the Exit button in the menu become disabled.
I have not nailed down the exact steps to reproduce this problem, but was wondering if anyone has experienced something similiar.
Thanks
Ron
(PS. BTW, Fantastic control, keep up the good work)
[Modified at 06/04/2007 05:17 PM]
In code, this executes:
private void LoadMyUserControl_Execute(object sender, ExecutedRoutedEventArgs e)
{
placeholder.Content = null;
MyUserControl control = new MyUserControl();
placeholder.Content = control;
}
I have this setup for 5 tabs, each loading a different UserControl. So far, so good.
When I use the application the UserControls load as expected, then unpredictably the Tabs become unresponsive, no longer responding to mouse events. Also the ApplicationOptions button and the Exit button in the menu become disabled.
I have not nailed down the exact steps to reproduce this problem, but was wondering if anyone has experienced something similiar.
Thanks
Ron
(PS. BTW, Fantastic control, keep up the good work)
[Modified at 06/04/2007 05:17 PM]