Hello,
I'm trying to replace mahapps with telerik in an existing C# mvvm application. In the shell of this application is a mahapps Flyout control. This control is triggered by the region manager.
This Flyout control flies in from the left (like the navigationview is flying in from the right) showing a detail CustomControl. Basically a window containing details of a selected line in a datagrid.
I'm trying to replace this Flyout control with a Telerik control, but without any luck.
The mahapps XAML code looks like:
<controls:MetroWindow.Flyouts>
<controls:FlyoutsControl>
<controls:Flyout Header="{Binding Header}" Position="Right" Width="550" IsOpen="{Binding IsOpen}"
IsPinned="{Binding IsPinned}">
<ContentControl prism:RegionManager.RegionName="{x:Static framework:RegionNames.DetailRegion}" />
</controls:Flyout>
</controls:FlyoutsControl>
</controls:MetroWindow.Flyouts>
Any ideas on how to replace this mahapps Flyout control with a Telerik control? Any suggestions on how to establish the same functionality.
Thanks!
Jochem