-
基于QT的截图工具软件源码
【实例简介】
基于QT的截图工具软件源码
- 2021-10-06 00:31:03下载
- 积分:1
-
udf动网格
udf控制柔性振动膜的动网格问题UDF to compute the orientation of a rotating valve, based on a specified rotational speed. Christoph Hiemcke, Fluent Inc., 12 Feb 2004 butterlfy_flex_UDF = name shown in Fluent GUI dt = thread cg_vel = cg velocity (global) cg_omega = angular velocity (global) time = current time dtime = time step
- 2022-08-03 23:08:11下载
- 积分:1
-
winform 菜单导航 例子源码下载
winform 菜单导航 例子源码下载
- 2015-05-17下载
- 积分:1
-
无刷直流电机入门攻略
基STm32的电机控制程序开发教程以及无刷电机详细介绍(Development of Motor Control Program Based on STm32, Source Code and Related Tutorials)
- 2020-06-23 03:20:02下载
- 积分:1
-
FMECmd
说明: 基于FME和C#,实现在C#中调用本地FME模板(Based on FME and C#, the local FME template can be invoked in C#.)
- 2019-03-12 21:49:05下载
- 积分:1
-
Change-mouse
说明: 执行该程序后可以按照自己的喜好选择4种样式的鼠标形状(After the implementation of the program according to their own preferences 4 style mouse shape)
- 2011-03-03 18:35:06下载
- 积分:1
-
Imageload
this is imageload.h file in OPENGL
- 2011-08-18 16:37:35下载
- 积分:1
-
CSAPP_swap
说明: CSAPP书中的原地交换算法,用C语言写的。(in place swap code which is from CSAPP.)
- 2020-06-22 01:20:02下载
- 积分:1
-
FileCheck
文件监控,yong VC++ xiele (file watch!!!)
- 2014-06-03 01:05:19下载
- 积分:1
-
C# 模糊文字 点击按钮文字模糊
C# 制作的模糊文字 点击按钮文字模糊效果,这是基于WPF的一个图像特效,将文字模糊显示,如图所示,运行本程序后,点击窗口中的按钮,即可将按钮中的文字模糊处理。下面来看具体的模糊按钮文字的实现代码:
if (((Button)sender).BitmapEffect != null)
{
((Button)sender).BitmapEffect = null;
}
else
{
Button MyButton = (Button)sender;
var MyBlurEffect = new System.Windows.Media.Effects.BlurBitmapEffect();
MyBlurEffect.Radius = 4;
MyBlurEffect.KernelType = System.Windows.Media.Effects.KernelType.Box;
MyButton.BitmapEffect = MyBlurEffect;
}
- 2022-01-21 04:39:19下载
- 积分:1