这是这种情况。
我有一个 MainPage.Xaml,在这个 MainPage.Xaml 中我嵌入了一个 UserControl (VideoWidget.Xaml) (LayouRoot.Children)。
VideoWidget.Xaml 在其 LayoutRoot 中嵌入了一个 mediaElement。
我正在尝试从 MainPage.Xaml 暂停/播放 MediaElement (mediaElement1),但没有响应。
例如
public MainPage()
{
// Required to initialize variables
InitializeComponent();
Video testVideo = new Video();
VideoWidget video = new VideoWidget(testVideo);
videoWidget.Height = 246;
videoWidget.Width = 290;
LayoutRoot.Children.Add(video);
video.mediaElement1.play();
}
mediaElement 的 All 方法没有响应。请帮忙。
莫希特