-
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
-
Wizard control the use Demo, demonstrated how to box as a window for the Wizard...
Wizard控件的使用Demo,演示了如何以对话框作为Wizard的子窗口控件-Wizard control the use Demo, demonstrated how to box as a window for the Wizard Control
- 2022-10-22 23:20:03下载
- 积分:1
-
本程序是实现一个无线按钮
本程序是实现了圆形按钮 -This procedure is to achieve a radio button
- 2022-07-13 23:44:05下载
- 积分:1
-
delphi6.0 very user
非常好用的delphi6.0控件,解压缩就可以使用。-delphi6.0 very user-friendly controls, decompress it can be used.
- 2022-03-12 22:08:08下载
- 积分:1
-
daotbl.zip
daotbl.zip
- 2022-03-26 18:09:26下载
- 积分:1
-
CHoverButton
CHoverButton - A simple hoverbutton with one bitmap and a tooltip A simple drop-in class that provides a hot look button using the _TrackMouseEvent function-CHoverButton- A simple hoverbutton with one bitmap and a tooltip A simple drop-in class that provides a hot look button using the _TrackMouseEvent function
- 2022-03-09 20:45:35下载
- 积分:1
-
This is the most simple application of the volume control
这是最简单适用的音量控制-This is the most simple application of the volume control
- 2022-08-15 22:34:51下载
- 积分:1
-
创建一个单文档的MFC 工程后,加一句话在CFrmain类中,就可以程序启动后不打开一个空文档了。...
创建一个单文档的MFC 工程后,加一句话在CFrmain类中,就可以程序启动后不打开一个空文档了。-Create a single document MFC project, add a word in CFrmain category, you can not open after the commencement of proceedings of an empty document.
- 2022-10-31 13:30:03下载
- 积分:1
-
INTERNET函数详细介绍,够多了吧,还不够多吗
INTERNET函数详细介绍,够多了吧,还不够多吗-INTERNET function in detail, it is more than enough, enough?
- 2022-09-26 12:50:03下载
- 积分:1
-
This article shows the use of a Push button with a drop down menu, similar to th...
This article shows the use of a Push button with a drop down menu, similar to the one found in the Office 2000 suite. 带下拉菜单的按钮-This article shows the use of a Push button with a drop down menu, similar to the one found in the Office 2000 suite. With the drop-down menu button
- 2022-07-24 17:18:02下载
- 积分:1