-
. net2003 environment, C# realize, and picture buttons.
.net2003环境下,C#实现的,图片按钮。-. net2003 environment, C# realize, and picture buttons.
- 2023-04-13 11:45:03下载
- 积分:1
-
鼠标操作的小例子,鼠标放到按钮上改变颜色,鼠标移开按钮也改变颜色...
鼠标操作的小例子,鼠标放到按钮上改变颜色,鼠标移开按钮也改变颜色-mouse operation of small examples and put buttons on the mouse to change color, remove the mouse button to change colors
- 2022-03-21 13:41:21下载
- 积分:1
-
聊天的一个小程序 使用的是用WINSOCK控件,达到局域网之间的聊天功能。无解压密码,...
聊天的一个小程序 使用的是用WINSOCK控件,达到局域网之间的聊天功能。无解压密码,-chatting a small program is the use of the Winsock Control, reaching between the LAN chatting. Without extracting passwords,
- 2023-04-09 06:50:03下载
- 积分:1
-
链接的结果类似的Web VB6.0控制。响应鼠标,鼠标离开,颜色…
VB6.0控件, 用于实现类似网页链接的效果. 响应MouseIn, MouseOut事件, 支持彩色鼠标资源, 支持自定义颜色. 带有测试工程-VB6.0 control for a similar Web link results. Response MouseIn, MouseOut, color mouse support resources to support custom color. With tests
- 2023-04-21 17:50:03下载
- 积分:1
-
ASP成绩查询程序,带后台,可批量导入数据
ASP成绩查询程序,带后台管理,通过后台可批量导入成绩数据、手功录入数据、查看数据、管理数据、管理用户、系统初始化、数据库压缩等功能,是一款功能相对简单的成绩查询系统。
- 2023-01-12 07:20:03下载
- 积分:1
-
在按钮控件上实现图标,从而美化图标的外观。
在按钮控件上实现图标,从而美化图标的外观。-To achieve control on the button icon, which beautify the appearance of the icon.
- 2022-07-22 10:49:18下载
- 积分:1
-
一段很好的三态树代码,有需要的朋友可以下载看看哦
一段很好的三态树代码,有需要的朋友可以下载看看哦 -For some good tri-state tree code, there is a need to see if friends can download Oh
- 2022-01-26 19:44:49下载
- 积分:1
-
For the solution of simple 8Puzzle, solvable 3 × 3 to 5 × 5, and another practic...
- 2022-01-28 02:47:12下载
- 积分:1
-
vc动态产生控件,并绑定相关的函数,类似于c#的代理,可以参考,适用于做UI。...
vc动态产生控件,并绑定相关的函数,类似于c#的代理,可以参考,适用于做UI。
-------------------------------
余津工作室,主要做条码,图像识别,网络通讯(BT构架,P2P通讯等)-vc dynamically generated controls, and binding-related function, similar to c# of agents, can refer to, apply to do UI.- Yu-chun studio, mainly to do bar-coding, image recognition, network communications (BT framework, P2P communications, etc.)
- 2022-01-26 04:13:03下载
- 积分: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