-
一个很好用的图象特效控件,请参考其中的源带代码学习怎么使用...
一个很好用的图象特效控件,请参考其中的源带代码学习怎么使用-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
-
bitmapbutton
自绘制按钮CButmapButtion,可以动态添加菜单和工具栏!-bitmapButton
- 2022-03-14 17:04:14下载
- 积分:1
-
学生信息系统,学生入学信息,选课信息,学籍信息等
学生信息系统,学生入学信息,选课信息,学籍信息等-student information system, student enrollment information, classes of information, student information
- 2022-07-22 07:07:55下载
- 积分:1
-
audible button will be the original code, the more interesting, Oh
会发声的按钮的原代码, 比较有趣, -audible button will be the original code, the more interesting, Oh
- 2022-02-01 13:50:28下载
- 积分:1
-
本程序实现了分形图形的显示,根据代码,可以研究绘制分形图形的方法。...
本程序实现了分形图形的显示,根据代码,可以研究绘制分形图形的方法。-realized by the fractal graphics, based code can study fractal graphics rendering method.
- 2022-04-02 07:30:29下载
- 积分:1
-
好用的图形按钮类: 支持直接指定图片、ImageList。
好用的图形按钮类: 支持直接指定图片、ImageList。-user-friendly graphical buttons categories : direct support for specific pictures, ImageList.
- 2023-04-06 11:30:04下载
- 积分:1
-
仪表盘控件程序,可以灵活得更改界面,显示各种漂亮得仪表效果,开发工控产品一定有用...
仪表盘控件程序,可以灵活得更改界面,显示各种漂亮得仪表效果,开发工控产品一定有用-dashboard controls procedures, flexible interface may be varied, showing the beautiful effect in Instrumentation, Industrial Development certain useful products
- 2022-08-09 15:35:55下载
- 积分:1
-
添加静态界面图标
添加静态界面图标-add static interface icon
- 2022-06-01 13:08:27下载
- 积分: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
-
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