-
this program is based on a document window painting static text window or button...
本程序是基于对文档窗口中画静态文本窗或按钮,这对开发基于文档程序非常有利,且美观,希望得到大家认可-this program is based on a document window painting static text window or button, which documents the development process based on a very favorable and attractive, we want to be recognized
- 2023-07-26 09:45:04下载
- 积分:1
-
一个调用dll的vc源代码 和豪华界面
一个调用dll的vc源代码 和豪华界面-a call dll vc the source code and interface luxury
- 2023-07-27 14:20:03下载
- 积分:1
-
ButtonSuite ButtonSuite
ButtonSuite ButtonSuite
- 2022-07-20 17:18:46下载
- 积分:1
-
make a afxmessagebox,a simple demo
make a afxmessagebox,a simple demo
- 2022-07-02 18:26:09下载
- 积分:1
-
inside several procedures, which can be used for variety of button controls prog...
里边有几个程序,可以用来实现多姿多彩的按钮控件编程,很好用的-inside several procedures, which can be used for variety of button controls programming, the good
- 2023-05-04 06:30:03下载
- 积分:1
-
一个非常好的控件,对美化你的界面非常重要,好好学习哦
一个非常好的控件,对美化你的界面非常重要,好好学习哦-a very good controls on landscaping your interface very important to learn oh
- 2022-04-26 09:32:06下载
- 积分: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
-
使用API做的自绘制按钮,可根据需要改写,可复用代码,建议先看懂。有疑问请联系作者:zcq108@126.com...
使用API做的自绘制按钮,可根据需要改写,可复用代码,建议先看懂。有疑问请联系作者:zcq108@126.com-using API to make a Button,you can change it if you need ,extend code ,suggeste you to see it. if you have a question ,you can contact the code maker.
- 2022-01-26 07:49:58下载
- 积分:1
-
vc做的旅游导航系统,主要解决求最短距离问题。
vc做的旅游导航系统,主要解决求最短距离问题。-vc make tourism navigation system, mainly to solve the problem of seeking the shortest distance.
- 2022-12-27 05:10: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