WPF中实现对Flash的播放

方案一:用WebBrowser实现

要想实现Flash的播放支持,需要借助Flash自身的ActiveX控件.

  而WPF作为一种展现层的技术,不能自身插入COM组件,必需借助Windows Form引入ActiveX控件.

比较标准的实现方法,可以参考以下链接:http://blogs.msdn.com/b/jijia/archive/2007/06/07/wpf-flash-activex.aspx

而本文则是介绍通过借助System.Windows.Forms下的WebBrowser实现.

  但无论是那一种方法,本质上都是通过在WPF程序中引用Windows Form窗体,再在其内引入ActiveX控件.

  实现对Flash的播放


  首先,引入可在WPF上承载 Windows 窗体控件的元素:WindowsFormsHost,及添加对 Windows 窗体的引用.

  具体的实现过程:项目引用--添加引用--程序集中选择 "WindowsFormsIntegration" 及 "System.Windows.Forms" --添加

  在WPF页面分别添加这两者的引用:

xmlns:host="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"

xmlns:forms="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"

XAML中的所有实现代码:

<Window x:Class="Capture.MainWindow"

        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

        xmlns:host="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"

        xmlns:forms="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"

        Title="File Capture" Height="600" Width="800"

        Unloaded="Window_Unloaded"

        >

    <Grid>

        <Grid.ColumnDefinitions>

            <ColumnDefinition Width="*"></ColumnDefinition>

            <ColumnDefinition Width="150"></ColumnDefinition>

        </Grid.ColumnDefinitions>

        <host:WindowsFormsHost x:Name="host">

            <forms:WebBrowser x:Name="browser"></forms:WebBrowser>

        </host:WindowsFormsHost>

        <Grid Background="Gray" Grid.Column="1">

            <UniformGrid Rows="5" VerticalAlignment="Top">

                <Button x:Name="btnOpen" Width="100" Height="30" Click="btnOpen_Click" Margin="0,10">Open File</Button>

                <Button x:Name="btnCapture" Width="100" Height="30" Click="btnCapture_Click" Margin="0,10">Start Capture</Button>

                <Button x:Name="btnStop" Width="100" Height="30" Click="btnStop_Click" Margin="0,10">Stop Capture</Button>

                <CheckBox x:Name="cboxLoop" IsChecked="True" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="25,10,0,10">Loop Capture</CheckBox>

            </UniformGrid>

        </Grid>

    </Grid>

</Window>

当需要把一选中的Flash文件(.swf 文件)添加进WebBrowser 中播放:browser.Navigate(currentPath);

实现对Flash的截图

  实现对Flash的截图,只要使用WebBrowser的基类WebBrowserBase里面的DrawToBitmap方法.

  参数Bitmap为所绘制的位图(需初始化位图的大小),Rectangle为截取WebBrowser内容的区域(大小)

public voidDrawToBitmap(

Bitmap bitmap,

Rectangle targetBounds

)

具体的实现代码:

private void Capture()

        {

            string fileName = System.IO.Path.GetFileNameWithoutExtension(currentPath);

            string capturePath = string.Format("{0}\\Capture\\{1}", System.Environment.CurrentDirectory, fileName);

            if (!Directory.Exists(capturePath))

            {

                Directory.CreateDirectory(capturePath);

            }

            Bitmap myBitmap = new Bitmap((int)host.ActualWidth, (int)host.ActualHeight);

            System.Drawing.Rectangle DrawRect = new System.Drawing.Rectangle(0, 0, (int)host.ActualWidth, (int)host.ActualHeight);

            browser.DrawToBitmap(myBitmap, DrawRect);

            string timeNow = DateTime.Now.ToString("yyyyMMddHHmmssfff");

            myBitmap.Save(string.Format("{0}\\{1}_{2}.png", capturePath, fileName, timeNow));

        }

本实例实现了对Flash的循环截图,时间间隔为1秒.本部分比较简单,

通过使用System.Windows.Threading下的DispatcherTimer即可实现.

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Windows;

using System.Windows.Controls;

using System.Windows.Data;

using System.Windows.Documents;

using System.Windows.Input;

using System.Windows.Media;

using System.Windows.Media.Imaging;

using System.Windows.Navigation;

using System.Windows.Shapes;

using Microsoft.Win32;

using System.Drawing;

using System.IO;

using System.Windows.Threading;

namespace Capture

{

    /// <summary>

    /// MainWindow.xaml 的交互逻辑

    /// </summary>

    public partial class MainWindow : Window

    {

        private string currentPath;

        private DispatcherTimer captureTimer;

        public MainWindow()

        {

            InitializeComponent();

        }

        private void btnOpen_Click(object sender, RoutedEventArgs e)

        {

            currentPath = OpenUserFileDialog();

            if (!string.IsNullOrEmpty(currentPath))

                LoadedFile();

        }

        private void btnCapture_Click(object sender, RoutedEventArgs e)

        {

            if ((bool)cboxLoop.IsChecked)

                RunTimer();

            else

                Capture();

        }

        private void btnStop_Click(object sender, RoutedEventArgs e)

        {

            if (captureTimer != null && captureTimer.IsEnabled)

                captureTimer.Stop();

        }

        private string OpenUserFileDialog()

        {

            string pathFile = string.Empty;

            OpenFileDialog openFileDialog = new OpenFileDialog();

            openFileDialog.FilterIndex = 1;

            openFileDialog.Multiselect = false;

            openFileDialog.AddExtension = true;

            openFileDialog.ValidateNames = true;

            if (openFileDialog.ShowDialog().Equals(true))

                pathFile = openFileDialog.FileName;

            return pathFile;

        }

        private void LoadedFile()

        {

            try

            {

                browser.Navigate(currentPath);

            }

            catch { }

        }

        private void Capture()

        {

            string fileName = System.IO.Path.GetFileNameWithoutExtension(currentPath);

            string capturePath = string.Format("{0}\\Capture\\{1}", System.Environment.CurrentDirectory, fileName);

            if (!Directory.Exists(capturePath))

            {

                Directory.CreateDirectory(capturePath);

            }

            Bitmap myBitmap = new Bitmap((int)host.ActualWidth, (int)host.ActualHeight);

            System.Drawing.Rectangle DrawRect = new System.Drawing.Rectangle(0, 0, (int)host.ActualWidth, (int)host.ActualHeight);

            browser.DrawToBitmap(myBitmap, DrawRect);

            string timeNow = DateTime.Now.ToString("yyyyMMddHHmmssfff");

            myBitmap.Save(string.Format("{0}\\{1}_{2}.png", capturePath, fileName, timeNow));

        }

        private void RunTimer()

        {

            if (captureTimer == null)

                captureTimer = new DispatcherTimer();

            captureTimer.Interval = TimeSpan.FromMilliseconds(1000);

            captureTimer.Tick += captureTimer_Tick;

            if (!captureTimer.IsEnabled)

                captureTimer.Start();

        }

        private void captureTimer_Tick(object sender, EventArgs e)

        {

            Capture();

        }

        private void Window_Unloaded(object sender, RoutedEventArgs e)

        {

            try

            {

                browser.Dispose();

            }

            catch { }

        }

    }

}


方案二:将Flash 嵌入WPF 程序

https://www.cnblogs.com/gnielee/archive/2010/07/27/wpf-flash-activex.html

https://blog.csdn.net/xingxing513234072/article/details/8919596

http://blog.sina.com.cn/s/blog_952cdb2a0100xl1f.html

 由于WPF 本身中不支持COM 组件同时也无法加载ActiveX 控件,所以需要借助WinForm 引用ActiveX 控件将Flash 加入其中。首先创建一个WPF 项目(WpfFlash),将Flash 文件(.swf)加入到项目中,并将Copy to Output Directory 设置为"Copy always"。

     在工程中新增一个Windows Forms Control Library 项目(FlashControlLibrary),利用该控件库加载Flash ActiveX。

     在FlashControlLibrary 项目工具栏(Toolbox)中点击鼠标右键,选择"Choose Items..."。在COM Components 标签中选择"Shockwave Flash Object",点击确定。


此时在工具栏中已经可以看到刚添加的Shockwave Flash Object 控件了。将控件拖入设计窗口,调整好控件尺寸使其满足Flash 的尺寸大小,对FlashControlLibrary 项目进行编译,并生成DLL 文件。


     返回WpfFlash 项目将上面编译的AxInterop.ShockwaveFlashObjects.dll 加入References,并添加System.Windows.Forms 和WindowsFormsIntegration,便于WinForm 程序在WPF 中交互使用。


接下来将通过两种方式将Flash 文件加入到WPF,一种侧重于使用XAML 代码实现,另一种则使用C#。可按各自需要选择其一。

XAML 方法

     打开MainWindow.xaml,加入命名空间xmlns:f="clr-namespace:AxShockwaveFlashObjects;assembly=AxInterop.ShockwaveFlashObjects"。在<Grid>中加入WindowsFormsHost 用于调用WinForm 程序,并在其中添加AxShockwaveFlash 控件加载Flash 文件。

<Window x:Class="WpfFlash.MainWindow"

        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

        xmlns:f="clr-namespace:AxShockwaveFlashObjects;assembly=AxInterop.ShockwaveFlashObjects"

        Title="Crab Shooter" Height="540" Width="655">

    <Grid>

        <WindowsFormsHost>

            <f:AxShockwaveFlash x:Name="flashShow"/>

        </WindowsFormsHost>

    </Grid>

</Window>

打开MainWindow.xaml.cs 将Flash 文件加载到flashShow 控件。

using System;using System.Windows;namespace WpfFlash{    public partial class MainWindow :Window

    {public MainWindow()        {            InitializeComponent();string flashPath =Environment.CurrentDirectory;            flashPath +=@"\game.swf";            flashShow.Movie = flashPath;        }    }}

C# 方法

使用C# 实现相同的效果,首先将XAML 代码按如下方式修改,在Window 中加入Loaded 事件。

<Window x:Class="WpfFlash.MainWindow"

        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

        Title="Crab Shooter" Loaded="FlashLoaded" Height="540" Width="655">

    <Grid x:Name="mainGrid"/>

</Window>

定义FlashLoaded 方法,主要通过WindowsFormsHost和 AxShockwaveFlash 完成Flash 加载操作。

using System;using System.Windows;using System.Windows.Forms.Integration;using AxShockwaveFlashObjects;namespace WpfFlash{public partial class MainWindow :Window

    {public MainWindow()        {            InitializeComponent();        }private void FlashLoaded(object sender,RoutedEventArgs e)        {WindowsFormsHost formHost =new WindowsFormsHost();AxShockwaveFlash axShockwaveFlash =new AxShockwaveFlash();            formHost.Child = axShockwaveFlash;            mainGrid.Children.Add(formHost);string flashPath =Environment.CurrentDirectory;            flashPath +=@"\game.swf";                        axShockwaveFlash.Movie = flashPath;        }    }}

效果图

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,290评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,107评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,872评论 0 347
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,415评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,453评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,784评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,927评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,691评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,137评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,472评论 2 326
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,622评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,289评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,887评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,741评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,977评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,316评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,490评论 2 348

推荐阅读更多精彩内容