WPF Media 简单的播放器
<Window x:Class="PlayTest.MediaControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MediaControl" Height="300" Width="300"> <Grid> <Grid.Triggers> <EventTrigger RoutedEvent="Button.Click" SourceName="playButton"> <EventTrigger.Actions> <BeginStoryboard Name="beginStoryboard"> <Storyboard> <MediaTimeline Source="e:\\第1讲.Linux应用与发展(下).wmv" Storyboard.TargetName="video"/> </Storyboard> </BeginStoryboard> </EventTrigger.Actions> </EventTrigger> <EventTrigger RoutedEvent="Button.Click" SourceName="pauseButton"> <EventTrigger.Actions> <PauseStoryboard BeginStoryboardName="beginStoryboard"/> </EventTrigger.Actions> </EventTrigger> <EventTrigger RoutedEvent="Button.Click" SourceName="resumeButton"> <EventTrigger.Actions> <ResumeStoryboard BeginStoryboardName="beginStoryboard"/> </EventTrigger.Actions> </EventTrigger> </Grid.Triggers> <MediaElement x:Name="video"/> <StackPanel Orientation="Horizontal" VerticalAlignment="Bottom"> <Button x:Name="playButton" Background="Brown" Height="40">Play</Button> <Button x:Name="pauseButton" Background="Brown" Height="40">Pause</Button> <Button x:Name="resumeButton" Background="Brown" Height="40">Resume</Button> </StackPanel> </Grid> </Window>
WPF揭秘 14.2
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步