我在 windows 8 商店应用程序的 GridApp 的 itemsdetail 页面的翻转视图中使用 MediaElement Control,我在使用它时遇到了一种特殊类型的问题。MediaElement 不显示视频,预期的视频输出上只有黑屏,但它可以很好地播放视频的音频。
现在我的问题的特殊部分是,在网格应用程序中有一组项目的集合(我知道每个人都可能知道这一点,只是为了让自己清楚),每个组的第一个项目只播放视频很好,我的意思是它可以很好地显示视频和音频,但是该组的其余项目只是不显示视频,只是播放视频的音频。有谁知道为什么会这样?
这是 XAML 代码:
<FlipView
x:Name="flipView"
AutomationProperties.AutomationId="ItemsFlipView"
AutomationProperties.Name="Item Details"
TabIndex="1"
Grid.RowSpan="2"
ItemsSource="{Binding Source={StaticResource itemsViewSource}}">
<FlipView.ItemContainerStyle>
<Style TargetType="FlipViewItem">
<Setter Property="Margin" Value="0,137,0,0"/>
</Style>
</FlipView.ItemContainerStyle>
<FlipView.ItemTemplate>
<DataTemplate>
<UserControl Loaded="StartLayoutUpdates" Unloaded="StopLayoutUpdates">
<ScrollViewer x:Name="scrollViewer" Style="{StaticResource VerticalScrollViewerStyle}" Grid.Row="1">
<Grid Margin="120,0,20,20">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="400" />
<ColumnDefinition Width="40" />
<ColumnDefinition Width="360" />
<ColumnDefinition Width="40" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Border BorderBrush="Black" BorderThickness="1" Width="350" HorizontalAlignment="Left" Grid.Row="0">
<MediaElement x:Name="VideoSource" AutomationProperties.Name="VideoSource" Source="/Assets/Big_Buck_Bunny.mp4" HorizontalAlignment="Center" VerticalAlignment="Stretch" Height="250" Width="350" AutoPlay="False" IsLooping="True" />
</Border>
<Border BorderBrush="Black" BorderThickness="1" Height="65" Width="350" HorizontalAlignment="Left" Grid.Row="1">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button x:Name="playButton" Margin="0,0" Click="playButton_Click" Style="{StaticResource PlayAppBarButtonStyle}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<Button x:Name="pauseButton" Margin="0,0" Click="pauseButton_Click" Style="{StaticResource PauseAppBarButtonStyle}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</StackPanel>
</Border>
</Grid>
</ScrollViewer>
</UserControl>
</DataTemplate>
</FlipView.ItemTemplate>
这是后面的代码:
private void playButton_Click(object sender, RoutedEventArgs e)
{
MediaElement media = FindControl<MediaElement>(this, "VideoSource") as MediaElement;
media.Play();
}
private void pauseButton_Click(object sender, RoutedEventArgs e)
{
MediaElement media = FindControl<MediaElement>(this, "VideoSource") as MediaElement;
media.Pause();
}
private void stopButton_Click(object sender, RoutedEventArgs e)
{
MediaElement media = FindControl<MediaElement>(this, "VideoSource") as MediaElement;
media.Stop();
}
private DependencyObject FindControl<T>(DependencyObject controlType, string ctrlName)
{
int childNumber = VisualTreeHelper.GetChildrenCount(controlType);
for (int i = 0; i < childNumber; i++)
{
DependencyObject child = VisualTreeHelper.GetChild(controlType, i);
FrameworkElement fe = child as FrameworkElement;
// Not a framework element or is null
if (fe == null) return null;
if (child is T && fe.Name == ctrlName)
{
// Found the control so return
return child;
}
else
{
// Not found it - search children
DependencyObject nextLevel = FindControl<T>(child, ctrlName);
if (nextLevel != null)
return nextLevel;
}
}
return null;
}
我希望我清楚地说明了这个问题。