This is a migrated thread and some comments may be shown as answers.

RadTransitionControl with PRISM

0 Answers 41 Views
TransitionControl
This is a migrated thread and some comments may be shown as answers.
amine
Top achievements
Rank 1
amine asked on 17 Jun 2013, 10:02 AM
Hi,

I try to use RadTransitionControl with PRISM, but my program does not work correctly.

Xaml :
<telerik:RadTransitionControl prism:RegionManager.RegionName="MyRegion1" >
    <telerik:RadTransitionControl.Transition>
        <telerik:FadeTransition/>
    </telerik:RadTransitionControl.Transition>
</telerik:RadTransitionControl>

CB :
private void RadMenu_ItemClick(object sender, Telerik.Windows.RadRoutedEventArgs e)
        {           
            switch ((e.OriginalSource as ExtendedMenuItem).AdditionalInfo.ToString())
            {
                case "XX":
                    _moduleManager.LoadModule("XXImpl");
                    break;
                case "YY":
                    _moduleManager.LoadModule("YYImpl");
                    break;
                case "ZZ":
                    _moduleManager.LoadModule("ZZImpl");
                    break;
                default:
                    MessageBox.Show("Module indisponible");
                    break;
            }
        }

my problem is that the transition does not work. There is only the first module that appears.
how I can solve this problem.
thank you

No answers yet. Maybe you can help?

Tags
TransitionControl
Asked by
amine
Top achievements
Rank 1
Share this question
or