-
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
-
树形控件的使用:实现从文本文件中读取数据加载到树的各自对应目录下(可作新手练习、参考)...
树形控件的使用:实现从文本文件中读取数据加载到树的各自对应目录下(可作新手练习、参考)
- 2022-04-23 17:10:10下载
- 积分:1
-
TabControl的使用Demo,演示了以对话框为子窗口建立多个Tab页的方法...
TabControl的使用Demo,演示了以对话框为子窗口建立多个Tab页的方法-TabControl use Demo to demonstrate the son of a dialog window to create a number of pages of the Tab
- 2022-07-27 18:00:43下载
- 积分:1
-
这也是一种按钮设计器,祝你好好利用,利用它可以提高软件的按钮的美观...
这也是一种按钮设计器,祝你好好利用,利用它可以提高软件的按钮的美观 -This is a design for the button, I wish you good use, it can use the software to improve the appearance button
- 2022-03-23 19:36:09下载
- 积分:1
-
提供了一个鼠标控制的类,包括移动、限制、隐藏等功能
提供了一个鼠标控制的类,包括移动、限制、隐藏等功能-provides a mouse-controlled categories, including mobile, limitations, hidden features
- 2022-10-25 20:15:03下载
- 积分:1
-
本代码例子提供了实现三角形按钮绘制的实现。
本代码例子提供了实现三角形按钮绘制的实现。-the code examples for achieving triangle button mapping is achieved.
- 2022-05-28 06:31:18下载
- 积分:1
-
VC++6.0源代码,演示如何制作圆角按钮和皮肤控件
VC++6.0源代码,演示如何制作圆角按钮和皮肤控件-VC++6.0 source code, demonstrates how to make rounded buttons, and the skin controls
- 2022-03-02 05:36:55下载
- 积分:1
-
利用单片机来控制传感器的测量物体的微振动,当物体微振动时把信号传输给了传感器,利用传感器采集的数据给了单片机,让单片机做具体的操作...
利用单片机来控制传感器的测量物体的微振动,当物体微振动时把信号传输给了传感器,利用传感器采集的数据给了单片机,让单片机做具体的操作- Using monolithic integrated circuit control sensor survey
object micro vibration, when object micro vibration has given the
signalling the sensor, gathered the data using the sensor to give the
monolithic integrated circuit, let the monolithic integrated circuit
make the concrete operation
- 2022-05-15 05:36:52下载
- 积分:1
-
用vb实现使用WebBrowser控件浏览网页,一个经典例子极具参考价值...
用vb实现使用WebBrowser控件浏览网页,一个经典例子极具参考价值-achieve with vb use WebBrowser Control Web site, a classic example of great reference value
- 2023-04-08 18:00:03下载
- 积分:1
-
用与隐藏窗口的代码.可以实现多个窗口的隐藏!
用与隐藏窗口的代码.可以实现多个窗口的隐藏!-used to conceal the code window. Multiple windows can be achieved hidden!
- 2022-01-25 15:02:58下载
- 积分:1