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

  • 相关阅读:
    控制语句
    (小程序)接收用户键盘输入
    运算符
    java doc形成注释文档
    linux中rz、sz命令,zip、unzip命令,sqlite3基本操作
    hash应用-加随机盐保存密码
    非对称/对称加密算法,hash算法
    自签名的应用--数字货币
    HTTPS原理
    Django中app的model相互引用问题
  • 原文地址:https://www.cnblogs.com/Events/p/3449222.html
Copyright © 2011-2022 走看看