-
用 Win API 实现自绘按钮类 ,有个好界面。
用 Win API 实现自绘按钮类 ,有个好界面。-Win API drawn from the category buttons, a good interface.
- 2022-01-24 18:13:35下载
- 积分:1
-
采用全部从CButton派生,完成全部的界面绘制
采用全部从CButton派生,完成全部的界面绘制-Make use of all derived from CButton to complete all of the interface for drawing
- 2022-03-05 00:41:42下载
- 积分:1
-
获取ip地址,控件,只需点击即可获取ip地址,简单易操作!
获取ip地址,控件,只需点击即可获取ip地址,简单易操作!-To obtain ip address, control, simply click away to obtain ip address, easy to operate!
- 2023-01-10 01:45:03下载
- 积分:1
-
可以实现三角形按钮的源代码,非常有个性,快来下吧
可以实现三角形按钮的源代码,非常有个性,快来下吧-Can realize the triangle button
- 2023-02-09 08:40:03下载
- 积分:1
-
minority can fine
可对小数操作的微调控件(Spin),内含使用说明,类的源代码和例子程序-minority can fine-tune the operation of control (Spin), intron use, the type and source code examples procedures
- 2022-03-14 13:02:23下载
- 积分:1
-
ARM MP3解码源代码 ARM MP3解码源代码
ARM MP3解码源代码 ARM MP3解码源代码-ARM source MP3 decoder source code ARM MP3 decoder source code for ARM MP3 decoder source code ARM MP3 decoder source code
- 2023-02-08 08:15:04下载
- 积分:1
-
按键播放声音、停止、循环等功能,可以有效实现多首播放功能。...
按键播放声音、停止、循环等功能,可以有效实现多首播放功能。-keys to play a sound, stop, recycling and other functions, can be more effectively achieved the first player.
- 2022-01-26 07:44:22下载
- 积分:1
-
一个简单的货架系统,可以任意装货和去货物。
一个简单的货架系统,可以任意装货和去货物。-a simple shelf systems, and can be loaded to any goods.
- 2023-01-31 00:10:04下载
- 积分:1
-
本程序用于模仿XP explorerbar到uxtreme只支持视觉结构。
本程序模仿XP explorerbar
使用到了Uxtreme
仅支持visual studio.net 2005-This procedure used to imitate XP explorerbar to Uxtreme only supports visual studio.net 2005
- 2022-03-23 07:53:25下载
- 积分:1
-
GlowButton - 发光的按钮控件
翻译 maninwest@Codeforge 作者:John Underhill @ Codeproject最近我在查看 KMP Player 软件上的一些图形元素(如果你想看看好的图形设计,我建议你也查看一下)。我在项目中需要的是一个简单的发光按钮控件,用于玩家控制的,这不是什么太神奇的东西,只是在鼠标悬停时能够改变颜色。让图像更改颜色很简单,只需修改 ImageAttribute 的颜色矩阵:private void DrawColoredImage(Graphics g, Image img, Rectangle bounds, Color clr)
{
using (ImageAttributes ia = new ImageAttributes())
{
ColorMatrix cm = new ColorMatrix();
// convert and refactor color palette
cm.Matrix00 = ParseColor(clr.R);
cm.Matrix11 = ParseColor(clr.G);
cm.Matrix22 = ParseColor(clr.B);
cm.Matrix33 = ParseColor(clr.A);
cm.Matrix44 = 1f;
// set matrix
ia.SetColorMatrix(cm);
// draw
g.DrawImage(img, bounds, 0, 0, img.Width,
img.Height, GraphicsUnit.Pixel, ia);
}
}示例代码中的 ParseColor 会将位转化为浮点值。 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2023-07-25 02:55:04下载
- 积分:1