Hello,
I am using the radcarousel panel and currently I am facing problems with wpf browser element. Namely my carousel contains several frame - elements which are containing a XAML - Page, something like this:
So my WebBrowserView has an wpf browser element. While scrolling radcarousel wpf browser element stays always top element although frame containing it isn't a selected item and overlaps items in foreground. Is it a common bug in wpf browser element or there is something wrong with radcarousel ?
Thank you.
I am using the radcarousel panel and currently I am facing problems with wpf browser element. Namely my carousel contains several frame - elements which are containing a XAML - Page, something like this:
<ScrollViewer x:Name="carouselScrollViewer" CanContentScroll="True" VerticalScrollBarVisibility="Hidden" Margin="0"> |
<telerik:RadCarouselPanel x:Name="mainMenuCarousel" |
ItemsPerPage="3" PathPadding="0,0,0,100" d:LayoutOverrides="Width, Height" ScrollViewer.VerticalScrollBarVisibility="Hidden"> |
<Frame Width="600" Height="400" Content="Frame" Source="\View\MediaPlayerView.xaml" NavigationUIVisibility="Hidden" IsEnabled="False" ScrollViewer.VerticalScrollBarVisibility="Disabled"/> |
<Frame Width="600" Height="400" Content="Frame" Source="\View\WebBrowserView.xaml" NavigationUIVisibility="Hidden" ScrollViewer.VerticalScrollBarVisibility="Disabled"/> |
<Frame Width="600" Height="400" Content="Frame" Source="\View\MediaPlayerView.xaml" NavigationUIVisibility="Hidden" ScrollViewer.VerticalScrollBarVisibility="Disabled" Focusable="False" IsTabStop="False"/> |
</telerik:RadCarouselPanel> |
</ScrollViewer> |
So my WebBrowserView has an wpf browser element. While scrolling radcarousel wpf browser element stays always top element although frame containing it isn't a selected item and overlaps items in foreground. Is it a common bug in wpf browser element or there is something wrong with radcarousel ?
Thank you.