-
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
-
MFC框架设计
资源描述MFC详细的代码,适合提高自己的MFC编程能力
- 2022-01-22 04:15:51下载
- 积分:1
-
specific details of their internal see the text shows that the beautiful interfa...
具体的说明请见内部的文本说明,界面漂亮的按钮控件-specific details of their internal see the text shows that the beautiful interface control buttons
- 2022-11-10 04:45:03下载
- 积分:1
-
This algorithm is a procedure. Builder 6.0 in the C compiler through.
这是一个算法实现程序. 在C++Builder 6.0编译通过.-This algorithm is a procedure. Builder 6.0 in the C compiler through.
- 2022-05-25 14:51:06下载
- 积分:1
-
computer monitoring system computer monitoring system computer monitoring system
计算机监控系统计算机监控系统计算机监控系统
- 2022-03-02 06:46:29下载
- 积分:1
-
一种打印预览的实现
一种打印预览的实现-a Print Preview Implementation
- 2022-03-29 02:04:57下载
- 积分:1
-
在窗体上实现vista风格的玻璃效果,效果好不错,做界面的话可以参考一下,加到form里面很酷炫的...
在窗体上实现vista风格的玻璃效果,效果好不错,做界面的话可以参考一下,加到form里面很酷炫的-the glass button on the windows by wpf
- 2022-02-25 00:32:34下载
- 积分:1
-
TC 开发内存驻留程序
TC 开发内存驻留程序-TC presence memory development procedures
- 2022-07-17 13:47:36下载
- 积分:1
-
BUTTON按钮的美化,具有XP按钮风格
BUTTON按钮的美化,具有XP按钮风格-BUTTON button landscaping with XP button style
- 2022-12-04 14:10:03下载
- 积分:1
-
一个很好用的图象特效控件,请参考其中的源带代码学习怎么使用...
一个很好用的图象特效控件,请参考其中的源带代码学习怎么使用-a good image with the effects controls, please refer to the source code with learning how to use
- 2022-01-25 22:08:07下载
- 积分:1