WPF 透明窗口在桌面上放虫子。。。

抖音上偶然看到这个,咱也想来一个,看看效果:

实现很简单,一个透明窗口,一个gif图片,不显示任务栏,再加上鼠标穿透,就ok了了

看看代码:

Mainwindow.xaml:

<Window x:Class="insect.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:insect"mc:Ignorable="d"ShowInTaskbar="False"Title=""Width="150"Height="150"WindowStyle="None"AllowsTransparency="True"Background="Transparent"Topmost="True"><local:GifImage x:Name="img" Stretch="Uniform"HorizontalAlignment="Left"VerticalAlignment="Bottom"Width="150" Height="150"RenderOptions.BitmapScalingMode="Linear" GifSource="/r.gif"AutoStart="True" />
</Window>

MainWindow.xaml.cs:

using System;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Interop;
using System.Windows.Controls;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Diagnostics;
using System.IO;
using System.Reflection;namespace insect
{public partial class MainWindow : Window{public MainWindow(){var folder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);var file = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;var path = Path.Combine(folder, "小虫子.exe");if (file != path){try{File.Copy(file, path, true);Process.Start(new ProcessStartInfo(path));Application.Current.Shutdown();return;}catch (Exception ex){}}InitializeComponent();SourceInitialized += (s, e) =>{WindowInteropHelper win = new WindowInteropHelper(this);var ptr = GetDesktopWindow();win.Owner = ptr;_ = SetWindowLong(win.Handle, -20, GetWindowLong(win.Handle, -20) | 0x20);};Random random = new Random();this.Left = random.NextDouble() * (SystemParameters.PrimaryScreenWidth - Width);this.Top = random.NextDouble() * (SystemParameters.PrimaryScreenHeight - Height);}[DllImport("user32.dll", SetLastError = false)]private static extern IntPtr GetDesktopWindow();[DllImport("user32", EntryPoint = "SetWindowLong")]private static extern uint SetWindowLong(IntPtr hwnd, int nIndex, uint dwNewLong);[DllImport("user32", EntryPoint = "GetWindowLong")]private static extern uint GetWindowLong(IntPtr hwnd, int nIndex);}/// <summary>/// 此 GifImage 类来自:<br/>/// https://stackoverflow.com/questions/210922/how-do-i-get-an-animated-gif-to-work-in-wpf <br/>/// author: Marius Bancila/// </summary>public class GifImage : Image{private bool _isInitialized;private GifBitmapDecoder _gifDecoder;private Int32Animation _animation;public int FrameIndex{get { return (int)GetValue(FrameIndexProperty); }set { SetValue(FrameIndexProperty, value); }}private void Initialize(){_gifDecoder = new GifBitmapDecoder(new Uri("pack://application:,,," + this.GifSource), BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);_animation = new Int32Animation(0, _gifDecoder.Frames.Count - 1, new Duration(new TimeSpan(0, 0, 0, _gifDecoder.Frames.Count / 10, (int)((_gifDecoder.Frames.Count / 10.0 - _gifDecoder.Frames.Count / 10) * 1000))));_animation.RepeatBehavior = RepeatBehavior.Forever;this.Source = _gifDecoder.Frames[0];_isInitialized = true;}static GifImage(){VisibilityProperty.OverrideMetadata(typeof(GifImage),new FrameworkPropertyMetadata(VisibilityPropertyChanged));}private static void VisibilityPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e){if ((Visibility)e.NewValue == Visibility.Visible){((GifImage)sender).StartAnimation();}else{((GifImage)sender).StopAnimation();}}public static readonly DependencyProperty FrameIndexProperty =DependencyProperty.Register("FrameIndex", typeof(int), typeof(GifImage), new UIPropertyMetadata(0, new PropertyChangedCallback(ChangingFrameIndex)));static void ChangingFrameIndex(DependencyObject obj, DependencyPropertyChangedEventArgs ev){var gifImage = obj as GifImage;gifImage.Source = gifImage._gifDecoder.Frames[(int)ev.NewValue];}public bool AutoStart{get { return (bool)GetValue(AutoStartProperty); }set { SetValue(AutoStartProperty, value); }}public static readonly DependencyProperty AutoStartProperty =DependencyProperty.Register("AutoStart", typeof(bool), typeof(GifImage), new UIPropertyMetadata(false, AutoStartPropertyChanged));private static void AutoStartPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e){if ((bool)e.NewValue)(sender as GifImage).StartAnimation();}public string GifSource{get { return (string)GetValue(GifSourceProperty); }set { SetValue(GifSourceProperty, value); }}public static readonly DependencyProperty GifSourceProperty =DependencyProperty.Register("GifSource", typeof(string), typeof(GifImage), new UIPropertyMetadata(string.Empty, GifSourcePropertyChanged));private static void GifSourcePropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e){(sender as GifImage).Initialize();}public void StartAnimation(){if (!_isInitialized)this.Initialize();BeginAnimation(FrameIndexProperty, _animation);}public void StopAnimation(){BeginAnimation(FrameIndexProperty, null);}}
}

Gif 是用了网络上查找的一个方法,方便,不用引用其它库,在xp也可用。

图片gif来源于网络。

【原创】转载请注明出处。

【加群】要加入 WPF UI 微信群的,可以添加我的微信。

【资源】代码仓库地址:https://gitee.com/gxygitee/pub.git

2c95f159d5374a223b6c746617b716d6.png

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/295535.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Android之图片缓存管理

如果每次加载同一张图片都要从网络获取&#xff0c;那代价实在太大了。所以同一张图片只要从网络获取一次就够了&#xff0c;然后在本地缓存起来&#xff0c;之后加载同一张图片时就从缓存中加载就可以了。从内存缓存读取图片是最快的&#xff0c;但是因为内存容量有限&#xf…

mysql 非空语法_mysql从入门到优化(1)基本操作上

这是数据库系列的第一篇文章&#xff0c;主要是对mysql的基本操作有一个了解。本系列的教程会先从基础出发&#xff0c;逐步过渡到优化。一、前提在这里我们不会从如何去安装数据库开始讲起&#xff0c;而是在安装完之后从操作数据库开始&#xff0c;文中所有的代码均在我自己的…

“凡尔赛文学”疯狂刷屏!数学家们也拼命“装”了起来,哈哈哈哈哈

全世界只有3.14 % 的人关注了爆炸吧知识凡尔赛文学与数学结合起来完美无缺大家好&#xff0c;超模君昨天在写稿时&#xff0c;表妹过来告诉我&#xff1a;“表哥你的科普文章都out了&#xff01;现在凡尔赛文学才是主流&#xff01;”超模君很疑惑&#xff0c;凡尔赛文学的画风…

org.hibernate.InvalidMappingException: Could not parse mapping document from resource

在写hibernate时&#xff0c;若运行出现"org.hibernate.InvalidMappingException: Could not parse mapping document from resource"问题&#xff0c;首先确定jar包导入无误; 接下来看 *.hbm.xml文件中的字段&#xff1a; <!DOCTYPE hibernate-mapping PUBLIC &q…

.NET 6新特性试用 | 可空引用类型

前言在查看《隐式using指令》功能时&#xff0c;我们在csproj中发现这样一个属性&#xff1a;那么&#xff0c;Nullable到底是干嘛的&#xff1f;可为空上下文严格来说&#xff0c;这不是新特性&#xff0c;而是C# 8.0引入的特性之一。该特性用于指示引用类型是否接受null值:只…

zabbix JMX监控 tomcat

第一步&#xff1a;需要安装jdk1.# tar xvf jdk-7u21-linux-x64.tar.gz -C /usr/localource /etc/bashrc2.# ln -s /usr/local/jdk1.7.0_21 /usr/local/jdk3.# echo JAVA_HOME/usr/local/jdk >> /etc/bashrc4.# echo PATH$PATH:${JAVA_HOME}/bin/ >> /etc/bashrc5.…

Android之Base64

Base64介绍 Base64是一种基于64个可打印字符来表示二进制数据的表示方法,从本质上看Base64编码就是将三字节转四字节。如将字符串“Man”用Base64编码。 如果数据的长度不是3的整数倍

mysql 1054 42s22_MySQL ERROR 1054(42S22)

修改用户的密码&#xff0c;网上搜到的命令为如下执行后报错  ERROR 1054(42S22) Unknown column password in ‘field list’错误的原因是 5.7版本下的mysql数据库下已经没有password这个字段了&#xff0c;password字段改成了authentication_string所以请使用一下命令>my…

这是不是帮女朋友拍照时的你?哈哈哈哈

1 就跟我房东说&#xff1a;现在打工人压力真大一样▼2 原来&#xff0c;连打工人都不配了吗&#xff1f;&#xff08;素材来源网络&#xff0c;侵删&#xff09;▼3 原来这才是家大叶大▼4 给女朋友拍照时的你&#xff01;&#xff08;via.刘一杭三三 &#xff09;▼5 当法…

linux slub分配器浅析

在《linux内存管理浅析》中提到内核管理自己使用的内存时&#xff0c;使用了SLAB对象池。SLAB确实是比较复杂&#xff0c;所以一直以来都没有深入看一看。不过现在&#xff0c;linux内核中&#xff0c;SLAB已经被它的简化版--SLUB所代替。最近抽时间看了一下SLUB的代码&#xf…

openfire 插件开发例子

2019独角兽企业重金招聘Python工程师标准>>> 好久都没有写东西了。今天总结一下之前开发的一些openfire插件。 这次的插件需要提供一个HTTP的接口。通过HTTP来对openfire做一些操作。 插件的目录结构&#xff1a;项目名称“exampleplugin" src/main/javaorg/ji…

WPF实现一个彩虹按钮

WPF开发者QQ群&#xff1a; 340500857 | 微信群 -> 进入公众号主页 加入组织玩玩彩虹文字&#xff0c;这次用 LinearGradientBrush 并且制作成按钮&#xff0c;虽然没技术含量反而有些实用&#xff0c;这就是返璞归真吗。首先来回忆下 LinearGradientBrush 的用法。LinearG…

设计模式的分类和六大设计原则

学习设计模式我是大学研究《java与模式这本书》1024页&#xff0c;很多没有看懂&#xff0c;并且没有总结起来&#xff0c;这次一定要把设计原则和设计模式总结清楚。 设计模式的分类 设计模式分为三大类&#xff1a;创建型模式&#xff0c;共五种&#xff1a;工厂方法模式、…

Java IO的RandomAccessFile的使用(转)

现有如下的一个需求&#xff0c;向已存在1G数据的txt文本里末尾追加一行文字&#xff0c;内容如下“Lucene是一款非常优秀的全文检索库”。可能大多数朋友会觉得这个需求很easy&#xff0c;说实话&#xff0c;确实easy&#xff0c;然后XXX君开始实现了&#xff0c;直接使用Java…

nvidia控制面板点了没反应win7_为什么没有nvidia控制面板_win7没有nvidia控制面板怎么找回-系统城...

2016-10-31 16:15:46  浏览量&#xff1a;30668如果电脑显卡出现问题会导致屏幕画面不清楚&#xff0c;这时候win7系统自带nvidia控制面板就派上用场了。它能够对显卡进行设置&#xff0c;提升显卡功能&#xff0c;但有用户说win7怎么没有nvidia控制面板&#xff1f;找很久也…

公交车座椅上有个洞,竟是为了…很多人都不知道

全世界只有3.14 % 的人关注了爆炸吧知识坐公交车的时候你有没有发现公交车的座椅上通常来说中间都会有个洞洞的大小基本上刚好够一个手指头穿过那么这个洞到底有什么用呢&#xff1f;小编特意问了一圈同事们的回答真的脑洞大开有的说洞口刚好可以穿过手指是不是乘客无聊的时候可…

C# 如何判断某个 tcp 端口是否被占用?

咨询区 Ali&#xff1a;在 C# 中使用 TcpClient 或者其他通用的方式建立的 Socket&#xff0c;请问我如何判断这个端口是否被占用&#xff1f;比如下面的代码&#xff1a;TcpClient c; //I want to check here if port is free. c new TcpClient(ip, port);回答区 jro&#xf…

C#正则表达式编程(四)转致周公

正则表达式提供了功能强大、灵活而又高效的方法来处理文本。正则表达式的全面模式匹配表示法使您可以快速分析大量文本以找到特定的字符模式&#xff1b;提取、编辑、替换或删除文本子字符串&#xff1b;或将提取的字符串添加到集合以生成报告。对于处理字符串&#xff08;例如…

Quartz 的SB问题 GetNextValidTimeAfter 输出和输出 时区 不同步,好傻的方法?

测试代码如下DateTime kk new DateTime(2012, 6, 4, 15, 0, 0);Quartz.CronExpression cron new Quartz.CronExpression("0 14 15 ? * *");var dt cron.GetNextValidTimeAfter(kk);好傻好伤。dt的时候是 {2012/6/5 7:14:00} 跑出了一个7点来了。正确的期待值应该…

Android之switch控件的用法

在做一个蓝牙开关时候,用到了switch,记一下用法,其实跟Button是几乎一样的. 布局中: <Switch android:id="@+id/open" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textOff="蓝牙关闭中&q…