-
将按钮形状改为三角形,增加界面的可视性,并且单击按钮时形状会改变。为压缩文件,无解压密码。...
将按钮形状改为三角形,增加界面的可视性,并且单击按钮时形状会改变。为压缩文件,无解压密码。-button will change triangular shape and increase the visibility interface, and click the button will change shape. For compressed files without extracting passwords.
- 2022-07-15 21:58:51下载
- 积分:1
-
URLBUTTON,一个有URL功能的按钮,有源码与演示源码。
URLBUTTON,一个有URL功能的按钮,有源码与演示源码。-URLBUTTON, a URL function button, and the demo source source.
- 2022-04-20 11:19:24下载
- 积分:1
-
链接按钮,实现鼠标在按钮上的图标自动图像…
链接按钮,实现鼠标放到按钮上图片自动变为手势图标,非常好的按键类-Link button, the realization of the mouse on the button icon image automatically into a gesture, very good key categories
- 2022-06-11 20:35:08下载
- 积分:1
-
不规则的按钮显示
不规则的按钮显示-irregular button shows
- 2022-01-25 18:21:07下载
- 积分:1
-
本实例介绍如何动态创建BUTTON控件。
本实例介绍如何动态创建BUTTON控件。-This example describes how to dynamically create a BUTTON control.
- 2022-03-06 22:58:48下载
- 积分:1
-
实现背景透明的按钮类(306KB)
实现背景透明的按钮类(306KB)-achieve transparent background category buttons (306KB)
- 2023-01-22 16:00:03下载
- 积分:1
-
用于显示mns风格的弹出窗口
用于显示mns风格的弹出窗口-MNS style shows for the pop-up window
- 2022-08-06 11:58:14下载
- 积分:1
-
可以实现三角形按钮的源代码,非常有个性,快来下吧
可以实现三角形按钮的源代码,非常有个性,快来下吧-Can realize the triangle button
- 2023-02-09 08:40:03下载
- 积分:1
-
specific details of their internal see the text shows that the beautiful interfa...
具体的说明请见内部的文本说明,界面漂亮的按钮控件-specific details of their internal see the text shows that the beautiful interface control buttons
- 2022-11-10 04:45:03下载
- 积分: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