-
一个有用的按钮,将满足大多数情况下
A useful button that will satify most of case
- 2022-12-26 05:35:04下载
- 积分:1
-
vb6.0sp5
开发工具 windows vb6.0sp5-vb6.0sp5
- 2022-07-24 18:21:04下载
- 积分:1
-
在按钮控件上实现图标,从而美化图标的外观。
在按钮控件上实现图标,从而美化图标的外观。-To achieve control on the button icon, which beautify the appearance of the icon.
- 2022-07-22 10:49:18下载
- 积分:1
-
采用ATL/WTL编程技术实现的重画按钮类
采用ATL/WTL编程技术实现的重画按钮类-Using ATL/WTL programming techniques to achieve the re-drawing the button-type
- 2022-05-20 02:05:36下载
- 积分:1
-
Implements a button with bmp class, is the application program interface aesthet...
实现了一个带bmp的按钮类,是应用程序界面美观-Implements a button with bmp class, is the application program interface aesthetics
- 2022-05-13 00:07:38下载
- 积分:1
-
vb编写的一个调用数据的范例,用来熟悉vb的数据组件
vb编写的一个调用数据的范例,用来熟悉vb的数据组件-vb prepared in a call to the data model used familiar with the data components vb
- 2022-05-06 00:22:34下载
- 积分:1
-
make a afxmessagebox,a simple demo
make a afxmessagebox,a simple demo
- 2022-07-02 18:26:09下载
- 积分:1
-
利用单片机来控制传感器的测量物体的微振动,当物体微振动时把信号传输给了传感器,利用传感器采集的数据给了单片机,让单片机做具体的操作...
利用单片机来控制传感器的测量物体的微振动,当物体微振动时把信号传输给了传感器,利用传感器采集的数据给了单片机,让单片机做具体的操作- Using monolithic integrated circuit control sensor survey
object micro vibration, when object micro vibration has given the
signalling the sensor, gathered the data using the sensor to give the
monolithic integrated circuit, let the monolithic integrated circuit
make the concrete operation
- 2022-05-15 05:36:52下载
- 积分:1
-
曲线画图类,可以用于各种曲线,在工控行业用的很多
曲线画图类,可以用于各种曲线,在工控行业用的很多-Curve drawing class, can be used for a variety of curves, used in many industrial sectors
- 2022-02-15 07:11:42下载
- 积分: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