-
谷 歌 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
-
17 classic control source package, the system is useful landscaping
17个经典控件的源码包,对系统美化很有用-17 classic control source package, the system is useful landscaping
- 2022-03-17 02:33:48下载
- 积分:1
-
VC++6.0源代码,演示如何制作圆角按钮和皮肤控件
VC++6.0源代码,演示如何制作圆角按钮和皮肤控件-VC++6.0 source code, demonstrates how to make rounded buttons, and the skin controls
- 2022-03-02 05:36:55下载
- 积分:1
-
一个好的颜色选择按钮控件
一个不错的颜色选择按钮控件-a good color choice button controls
- 2022-01-25 22:27:27下载
- 积分:1
-
基于Microsoft Visual Basic 6.0 的在窗口上的鼠标形状的一段程序
基于Microsoft Visual Basic 6.0 的在窗口上的鼠标形状的一段程序-Based on Microsoft Visual Basic 6.0 in a window on mouse-shaped section of the procedures
- 2023-02-05 18:50:03下载
- 积分:1
-
graphics rendering, since the definition of how to use the brush (color, line wi...
图形的绘制,如何使用自定义画笔(颜色,线宽,线形)。如何为程序中添加选项菜单和选项设置对话框,如何使用标准颜色对话框,如何使用字体对话框,在选项对话框中实现预览功能。实现选项对话框和窗口类中的数据交换。如何改变对话框和控件的背景色,如何改变控件的文本颜色,对按钮控件的特殊处理。如何在窗口中显示一幅位图。-graphics rendering, since the definition of how to use the brush (color, line width, alignment). How procedures for adding options menu options and settings dialog, the use of standard color dialog and how to use Font dialog box, the options dialog to achieve preview function. Implementation options dialog window and type of data exchange. How to change the dialog box and control the background color, how to change the text color control, the right button controls the special treatment. How in the window shows a bitmap.
- 2022-04-15 03:46:04下载
- 积分:1
-
windows平台的计数器源代码,初学者科研
windows平台的计数器源代码,初学者科研-windows platform Counter source code, look at the research beginners
- 2023-03-12 18:40:03下载
- 积分:1
-
visual c++ 按钮编程参考代码,
visual c++ 按钮编程参考代码,-visual c++ button programming reference code,
- 2022-01-26 05:22:00下载
- 积分:1
-
农历控件 V1.0.10
农历控件 V1.0.10-Lunar Control V1.0.10
- 2022-03-17 01:07:12下载
- 积分:1
-
为ie增加按钮,vb源码,需要自己生成exe文件,
为ie增加按钮,vb源码,需要自己生成exe文件,-Additional buttons for ie
- 2022-11-02 23:20:03下载
- 积分:1