-
Delphi6.0非常用户
非常好用的delphi6.0控件,解压缩就可以使用。-delphi6.0 very user-friendly controls, decompress it can be used.
- 2023-04-12 23:15:02下载
- 积分:1
-
1、本实验箱采用的液晶显示屏内置控制器为SED1520,点阵为122x32,由两片SED1520组成,由E1、E2分别选通,控制显示屏的左右两半屏。...
1、本实验箱采用的液晶显示屏内置控制器为SED1520,点阵为122x32,由两片SED1520组成,由E1、E2分别选通,控制显示屏的左右两半屏。-1, the experimental use of the boxes built-in LCD controller for SED1520, to 122x32 dot matrix, composed of two SED1520, E1, E2 respectively strobe control screens around two semi-screen.
- 2022-06-28 00:38:50下载
- 积分:1
-
编写自己的按钮
编写自己的按钮-Write your own button
- 2022-02-16 06:37:50下载
- 积分:1
-
You need to round buttons? This class has been doing a good job for you, and it...
你需要圆形的按钮吗?这个类已经替你做好了,它可是有正常、平面、下推几种风格的,快使用它吧-You need to round buttons? This class has been doing a good job for you, and it is but a normal, flat, push-down of several styles, and quick to use it bar
- 2023-06-21 13:15:03下载
- 积分:1
-
design is a process of a total of N line in the process scheduler. Process Sched...
设计一个有 N个进程共行的进程调度程序。
进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和时间片轮转调度算法。
每个进程由一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。 -design is a process of a total of N line in the process scheduler. Process Scheduling Algorithm : The number of the highest priority priority scheduling algorithm (that is, processors allocated to the highest priority in the process) and time-scheduling algorithm postings. Every process from a process control block (PCB) said. Process control block may contain the following information : process, and priority number, the arrival time, the running time, CPU time used, the process of the state and so on.
- 2022-08-09 06:12:05下载
- 积分:1
-
good button control (VC development of the Photo button, the button can be purch...
很好的按钮控件(VC中开发的图片按钮,能购实现按钮的鼠标变化)-good button control (VC development of the Photo button, the button can be purchased to achieve the mouse changes)
- 2022-01-28 08:09:53下载
- 积分:1
-
此控件为jsp通用的日历控件,解决了时间输入的问题,用户可以通过此控件输入标准日期...
此控件为jsp通用的日历控件,解决了时间输入的问题,用户可以通过此控件输入标准日期-jsp common calendar controls, solving the problem of time, users can control the importation of this standard date
- 2022-01-25 21:07:53下载
- 积分:1
-
一个比较丰富的CButtonST类,里面包含大部分的Button按钮的设计,也很实用...
一个比较丰富的CButtonST类,里面包含大部分的Button按钮的设计,也很实用-A relatively rich CButtonST category, which contains most of the Button button on the design, is also very practical
- 2022-04-22 06:42:22下载
- 积分:1
-
添加圆形按钮的小实例,可以帮助初学者快速掌握,新手必看...
添加圆形按钮的小实例,可以帮助初学者快速掌握,新手必看-Radio button to add a small example that can help beginners to grasp,新手必看
- 2022-03-26 19:14:23下载
- 积分: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