-
在VC对话框控件进度条的基础上进行了扩展,模仿某些专业软件的界面,显示一个颜色渐变的进度条,使用它会给你的应用程序增色不少。...
在VC对话框控件进度条的基础上进行了扩展,模仿某些专业软件的界面,显示一个颜色渐变的进度条,使用它会给你的应用程序增色不少。-in VC progress of the dialog box controls on the basis of expansion, imitating professional software interface, a color shown gradual progress, it will give you the use of the application elegance.
- 2022-03-13 20:02:22下载
- 积分:1
-
房屋中介管理系统
系统采用人机交互方式,灵活地批量录入数据,实现垃圾信息清理,实现后台监控功能,实现各种查询,如定位询、模糊查询实现图形化显示房源信息,系统最大限度地实现了易安装性、易维护性和易操作性。
房屋中介管理系统主要用来记录客户房屋的出租及求租等信息,数据量是根据房屋信息的多少来决定的,如果房屋信息的记录很多, 那将会占用很大的数据库空间,
- 2023-04-30 10:35:04下载
- 积分:1
-
可以把任意文字变成窗体的形状.增加特色
可以把任意文字变成窗体的形状.增加特色 -can become arbitrary text window shapes. Special feature
- 2022-02-06 02:56:08下载
- 积分:1
-
移动大多数对象,包括窗体、按钮、文本框、标签..... 使用方法简易....
移动大多数对象,包括窗体、按钮、文本框、标签..... 使用方法简易.-most mobile targets, including forms, buttons, text box, labeling ..... easy to use.
- 2023-01-17 11:45:04下载
- 积分:1
-
vb+mo地理信息系统二次开发,实现数据查询,空间分析,动态跟踪,图形编辑。...
vb+mo地理信息系统二次开发,实现数据查询,空间分析,动态跟踪,图形编辑。-vb mo GIS secondary development, data inquiries, spatial analysis, dynamic tracking, image editing.
- 2023-01-31 19:10:04下载
- 积分:1
-
非常漂亮进度条的下载控件和源码 ,很漂亮的进度条,推荐大家使用,很实用的东西,菜鸟必备...
非常漂亮进度条的下载控件和源码 ,很漂亮的进度条,推荐大家使用,很实用的东西,菜鸟必备-Very beautiful download progress bar controls and source code, very nice progress bar, it is recommended you use, very practical things, rookie must have
- 2022-06-20 12:44:02下载
- 积分:1
-
SerialTest
应用背景SerialTest是一个很好用的串口调试器,也是可以帮助C#编程学习的好例程。关键技术串口测试功能:波特率,串口,停止位,数据位,奇偶校验。进行发送读取-Serial port baud rate, serial port, test function: stop bit, data bits, parity.To send read
- 2022-01-31 07:12:20下载
- 积分:1
-
This is user defined control based on ASP.NET. as for those who need to apply dr...
这是基于的用户定义控件ASP.NET. 对于那些需要应用拖放控制的人来说,这是一个很好的方法。
- 2023-05-01 23:45:04下载
- 积分:1
-
自定义颜色的按钮控件、静态框控件、编辑框及复选框
自定义颜色的按钮控件、静态框控件、编辑框及复选框- Controls, the static frame from the definition color button
controls, edits the frame and the reelection frame
- 2022-01-25 23:49:37下载
- 积分:1
-
基于c#的时钟
资源描述本源程序是基于C#的时钟设计,能为初学者提供参考价值,为初学者提供基本的编写代码思路,
namespace Clock
{
public partial class MainForm : Form
{
private PointF center;
private float r;
private Pen hourPen;
private Pen minutePen;
private Pen secondPen;
private Thread timeThread;
public MainForm()
{
InitializeComponent();
ShowInTaskbar = false;//不在任务栏中显示
SetStyle(ControlStyles.DoubleBuffer, true);
SetStyle(ControlStyles.UserPaint,true);
SetStyle(ControlStyles.AllPaintingInWmPaint,true);
center = new PointF(ClientSize.Width/ 2.0f, ClientSize.Height/ 2.0f);
r = Math.Min(ClientSize.Width / 2.0f, ClientSize.Height / 2.0f);
hourPen = new Pen(Color.Black, 2.5f);
minutePen = new Pen(Color.Black, 1.5f);
secondPen = new Pen(Color.Black, 0.5f);
timeThread=new Thread(new ThreadStart(DrawTime));
timeThread.Start();
}
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
g.Clear(BackColor);
//g.SmoothingMode =
- 2022-01-26 05:22:52下载
- 积分:1