zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    visual sudio开发工具使用小技巧
    JS去除右边的逗号
    下拉标题
    sp_addextendedproperty
    触发器的使用
    缺失一个正数
    组合总和 去重
    拖动 Drag
    n皇后问题
    括号生成
  • 原文地址:https://www.cnblogs.com/Events/p/3449222.html
Copyright © 2011-2022 走看看