-
东西比较多,不多说了 看不懂,就别说学过vc
东西比较多,不多说了 看不懂,就别说学过vc-many things, few said they did not understand, let alone learn vc
- 2022-01-27 18:00:20下载
- 积分:1
-
获取ip地址,控件,只需点击即可获取ip地址,简单易操作!
获取ip地址,控件,只需点击即可获取ip地址,简单易操作!-To obtain ip address, control, simply click away to obtain ip address, easy to operate!
- 2023-01-10 01:45:03下载
- 积分:1
-
source of the menu
源程序 已经XP化后的含菜单的按钮控件-source of the menu-control button
- 2022-07-07 22:52:06下载
- 积分:1
-
Simple calculator ah
简单计算器 啊-Simple calculator ah
- 2022-10-21 08:15:03下载
- 积分:1
-
3D mark 2003样式的按钮控件,替换CButton的理想选择
3D mark 2003样式的按钮控件,替换CButton的理想选择-style button controls, replacing an ideal choice CButton
- 2023-08-28 08:40:03下载
- 积分: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
-
类似tab控件的一个按钮做的group控件
类似tab控件的一个按钮做的group控件- Similar tab controls group which a button does to control
- 2022-02-05 18:21:40下载
- 积分:1
-
这是又一个原程序,共含5个程序,已经过测试
这是又一个原程序,共含5个程序,已经过测试-This is also an original program, with a total of five procedures, has been tested
- 2022-06-14 08:54:57下载
- 积分:1
-
this procedure to create a three
本程序创建了一个3维的按钮程序,供大家参考。-this procedure to create a three-dimensional buttons procedures for your reference.
- 2022-01-21 01:07:13下载
- 积分:1
-
谷 歌 Chrome进度条
翻译 maninwest@Codeforge 作者:VallarasuS@CodeProject这里展示如何从头开始创建一个 Go ogle Chrome 主题的 进度条。任何进度条控件都依赖于一个值及表示进度值的图形。 Goo gle Chrome 下载程序有个圆圈表示进度。使用代码ChromeProgressBaris 跟 Chrome ProgressBar 的工作原理一样。将进度值转化为一个圆圈图形来表示.private void PaintProgress(PaintEventArgs e)
{ using( SolidBrush progressBrush = new SolidBrush(this.ProgressColor))
{
Rectangle rect = LayoutInternal.ProgressRectangle;
rect.Inflate(-2, -2);
rect.Height -= 2; rect.Width -= 2; float startAngle = -90; float sweepAngle = Progress / 100 * 360;
e.Graphics.FillPie(progressBrush, rect, startAngle, sweepAngle);
}
}这里是如何使用图形路径和4条线绘制圆圈和细分部分。对 Graphics 对象的剪切部分进行调整来剪切圆圈外的线。private void PaintBorder(PaintEventArgs e)
{
GraphicsPath borderPath = new GraphicsPath();
Rectangle progressRect = LayoutInternal.Prog
- 2022-08-08 07:55:37下载
- 积分:1