当前注册人数155278人 邮箱: 密码: 注册新用户 忘记密码
首页 C/C++/MFC C# ASP.NET VB.NET MATLAB   站内搜索 BBS讨论社区 下载代码说明/积分规则
为什么要注册?

1. 可以直接免费从本站下载代码,防止邮件发送不到您的邮箱,或登录不了国外网站

2. 可以设定关键字,当有您关心的代码收录时,邮件通知您

3. 对这里的代码进行评分和评论

4. 可以和大家一起分享你的源代码,得到更多的建议

Transparent Desktop Video

C#实现透明桌面视频播放源代码

2007年12月12日
C#Win2K, WinXP, Win2003, .NET 1.1, WinForms, VS.NET2003, Dev
本程序是一个简单的WinForm程序,它实现了透明地播放视频,也就是说你在看视频的同时,不影响你对其它应用程序的任何操作。视频数据源可以来自一个视频文件或在线捕捉设备。
 
相关知识

最早这是思想实现与MacOS X系统上,被称之为FaceTop。

[DllImport("user32.dll", SetLastError=true)]
        static extern int GetWindowLong(IntPtr hWnd, int nIndex);
        [DllImport("user32.dll", SetLastError=true)]
        static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);

        private const int  GWL_EXSTYLE = -20;
        private const int  WS_EX_TRANSPARENT = 0x20;

        private void VideoPlayer_Load(object sender, System.EventArgs e)
        {
            // Add WS_EX_TRANSPARENT style so that mouse, keyboard etc. events pass

            // thru us.

            int exstyle = GetWindowLong(this.Handle, GWL_EXSTYLE);
            exstyle |= WS_EX_TRANSPARENT;
            SetWindowLong(this.Handle, GWL_EXSTYLE, exstyle);
        }

源代码原文下载:
Transparent Desktop Video This simple C# WinForms project allows you to playback video from a live capture device or from an existing video file and blend the video using transparency with the existing Windows desktop. The user can still interact with all other application windows "through" the playing video stream.

源码图片

从本站下载附件及源代码(1个附件,已经成功下载509次)

最值得关注的外文源代码

Motion Detection Algorithms
Fading Forms In and Out
ASP.NET Transparent GIF Source Code
DirectX Board Game Engine
评论(评论是增加积分的一个有效途径)
字数在300字内
请如实评论
本源代码共评论93次,此处显示最近20次评论! 查看所有评论

ping3021  2010年04月30日
学习了 谢谢
帅锅  2009年10月16日
好东西,一定要看看
chiray  2009年07月08日
好东西 我要看看
wince159  2009年06月09日
不错的东西。。。
godwilling  2009年06月09日
谢谢 谢谢
wwychina  2009年05月29日
很实用谢谢
gfsoft  2009年05月26日
很实用谢谢
sanshengshi  2009年05月19日
很好
mlhy20060406  2009年05月18日
good
spring  2009年04月20日
good
kikimuisc  2009年04月10日
谢谢提供资料学习
小白  2009年04月04日
缺少东西的
tryagain  2009年03月20日
可以下载下来看看了 呵呵
tryagain  2009年03月20日
可以下载下来看看了 呵呵
tryagain  2009年03月20日
看了再说吧
疯之饺子  2009年03月16日
怎么下在
songbo  2009年03月09日
不错 很实用谢谢
caoda  2009年03月08日
可以下载下来看看了 呵呵
guanpb  2009年02月20日
very good
lqzwin  2009年02月16日
不错 很实用谢谢
字数在300字内
请如实评论
CopyRight (C) codesoso.com 2007-2009 All Rights Reserved   免责声明
京ICP备08011023号