This question is locked. New answers and comments are not allowed.
Hello,
I have a problem with some of the displayed wmv videos. I need to hide the bottom of every RadMediaItem with a TextBlock within a Border control (White back-color) Please view the attached image 1.jpg.
I used the following code. It is works fine but it hide the radmediaitem's buttons (like play, pause, full screen and so on). View the attached image 2.jpg
Please, I need your help in order to achieve the target without hiding the radmediaitem's buttons as I explained above.
It is apprecited to send me the modified code.
Regards,
Bader
I have a problem with some of the displayed wmv videos. I need to hide the bottom of every RadMediaItem with a TextBlock within a Border control (White back-color) Please view the attached image 1.jpg.
I used the following code. It is works fine but it hide the radmediaitem's buttons (like play, pause, full screen and so on). View the attached image 2.jpg
<UserControl x:Class="MediaPlayerSmoothStreaming.MainPage" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" Loaded="UserControl_Loaded" d:DesignHeight="300" d:DesignWidth="400"> <Grid x:Name="LayoutRoot" Background="White"> <telerik:RadMediaPlayer x:Name="player" > <telerik:RadMediaItem IsStreamingSource="False" x:Name="item0" StreamAttached="RadMediaItem_StreamAttached" > </telerik:RadMediaItem> </telerik:RadMediaPlayer> <Border CornerRadius="2" Background="#FFFFFF" Height="25" VerticalAlignment="Bottom" > <TextBlock x:Name="item1" Text="Nasreen" Foreground="#FF145178" Margin="2"></TextBlock> </Border> </Grid> </UserControl> Please, I need your help in order to achieve the target without hiding the radmediaitem's buttons as I explained above.
It is apprecited to send me the modified code.
Regards,
Bader