-
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
-
学生信息系统,学生入学信息,选课信息,学籍信息等
学生信息系统,学生入学信息,选课信息,学籍信息等-student information system, student enrollment information, classes of information, student information
- 2022-07-22 07:07:55下载
- 积分:1
-
A very good example of radio button from the painting
一个非常好的,自绘圆形CButton按钮的例子-A very good example of radio button from the painting
- 2022-05-09 11:55:36下载
- 积分:1
-
Realize with VC player function. Can display the lyrics, have fast
用VC实现播放器的功能.可以显示歌词,有快进和快退等功能-Realize with VC player function. Can display the lyrics, have fast-forward and rewind functions
- 2022-09-07 23:05:03下载
- 积分:1
-
这篇文章试图给出称球问题的一个一般的和严格的解答。正因为需要做到 一般和严格,就要考虑许多平时遇不到的特别情形,所以叙述比较繁琐。如果对读者 对严格的证明没有兴...
这篇文章试图给出称球问题的一个一般的和严格的解答。正因为需要做到 一般和严格,就要考虑许多平时遇不到的特别情形,所以叙述比较繁琐。如果对读者 对严格的证明没有兴趣,可以只阅读介绍问题和约定记号的第一、第二节,以及第三 节末尾27个球的例子,和第五节13个球和40个球的解法。事实上所有的技巧都已经表 现在这几个例子里了。-said the ball is a general problem and the strict answer. It is precisely because of the need for general and strictly, it is necessary to consider many peacetime on without coming to the special circumstances, the narrative is relatively more complicated. If the reader to the strict proof of a lack of interest can only read and agreed on the first mark, II, III and the end of 27 examples of the ball, and V 13 balls and 40 balls in the paper. Indeed, all the skills have been reflected in several of the examples.
- 2022-03-10 02:13:06下载
- 积分:1
-
Import and export GS ASCII (GRD files) from and to Golden Software Applications...
Import and export GS ASCII (GRD files) from and to Golden Software Applications like Surfer and Grap
- 2023-07-09 20:25:04下载
- 积分:1
-
skin effect of VC interface design with the U.S. share
skin 效果的 VC 界面设计 与大家一起分享-skin effect of VC interface design with the U.S. share
- 2022-02-12 18:17:20下载
- 积分:1
-
精简、漂亮的小按钮,代码极简单,思路清晰。
精简、漂亮的小按钮,代码极简单,思路清晰。-streamlined, pretty small buttons, code simple, clear ideas.
- 2022-07-02 14:27:14下载
- 积分:1
-
一个很好的Button类 很好很好 很好很好
一个很好的Button类 很好很好 很好很好-Button a very good very good very good very good very good category
- 2022-11-15 06:45:03下载
- 积分:1
-
按钮一般有按下和弹起两种状态,在3D studio中按钮也有这两种状态,Windows中虽然看到按钮虽是弹起的,但细心的用户不难发现,当选中按钮时,它有短暂的按...
按钮一般有按下和弹起两种状态,在3D studio中按钮也有这两种状态,Windows中虽然看到按钮虽是弹起的,但细心的用户不难发现,当选中按钮时,它有短暂的按下状态。实际上,它的原理很简单,其实是利用改变按钮边框的颜色引起人视觉上的错觉而达到立体效果,让人们感到屏幕上真有凸起和凹下的按钮一样,下载看一看。-general press the button and pop-up two states, which in 3D studio buttons have these two states, although the Windows button to see though is thrown up, but carefully users can easily find, elected to the central button, it is short of pressing state. Actually, it"s very simple principle is actually changing the color of the button frame visually aroused people to achieve the illusion of three-dimensional effects, the people feel a great cosmopolitan screen uplift and subfoveal button, look at the download.
- 2022-04-20 08:38:21下载
- 积分:1