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

  • 相关阅读:
    传值,传引用?一切都是传地址
    前端神器sublime
    PHP中文乱码的常见解决方法总结
    css mainDiv和popbox居中
    中文系统 上传file的input显示英文
    css 任何元素都可以加背景图
    xpath的简明语法
    JQuery技巧总结
    当工作和爱情不如意的时候...
    微软2008年将发布的产品全表
  • 原文地址:https://www.cnblogs.com/Events/p/3449222.html
Copyright © 2011-2022 走看看