-
对话框上绘画橡皮条矩形
应用背景使用CRectTracker类,在对话框上绘画橡皮条矩形,使用鼠标可以移动矩形、放大或缩小-Use CRectTracker class, drawing on the dialog rubber rectangle, use the mouse to move the rectangle, zoom in or out.关键技术对话框图像显示,及橡皮筋效果,图片不闪烁,使用鼠标可以移动矩形、放大或缩小。你可以画画图片控制橡皮筋矩形,可以直接使用
- 2022-02-07 06:50:46下载
- 积分:1
-
SortListCtrl代码
在listCtrl基础上改进的SortListCtrl控件,并且自己增加了若干类如UpdateSubItem,SetItemColor,OnSysColorChange等。
- 2022-01-31 22:34:09下载
- 积分:1
-
完全使用winAPI函数完成一个简单窗口的绘制,包括滚动条.是vc6入门的必修程序...
完全使用winAPI函数完成一个简单窗口的绘制,包括滚动条.是vc6入门的必修程序-use winAPI function fully complete a simple window mapping, including scroll. Yes vc6 entry procedures for the compulsory
- 2022-02-21 22:43:07下载
- 积分:1
-
数据库 C#
它用来在使用 C# 的计算机中保存一个人的信息
数据库是数据的有组织集合。通常,数据被组织到模型方面的现实支持流程需要的信息的方式。例如,建模方法,能够找到一个职位空缺的酒店在酒店客房的可用性。
数据库管理系统(DBMSs) 是专门设计的软件交互的应用程序用户、 与其他应用程序,数据库本身来捕获和分析数据。一个通用数据库管理系统是设计为允许定义、 创建、 查询、 更新和管理数据库的软件系统。驰名的 Dbms 包括 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-05-18 17:45:54下载
- 积分:1
-
一个小车动画,急于BIOS的中断调用.当小车行驶到屏幕底端,可以从平面顶端重新开始...
一个小车动画,急于BIOS的中断调用.当小车行驶到屏幕底端,可以从平面顶端重新开始-a car animation, eager BIOS interrupt the call. When the car to the bottom of the screen will be flat from the top to re-start
- 2022-02-18 17:20:14下载
- 积分: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
-
using resources customization, user
采用资源定制,实现用户自定义形状的窗口,定制个性的界面风格-using resources customization, user-defined shape of the window, customized interface style
- 2022-03-23 20:33:19下载
- 积分:1
-
组件应用实例delphi源码,很适合初学者!
组件应用实例delphi源码,很适合初学者!-Component Application delphi source is well-suited to beginners!
- 2022-03-17 14:22:30下载
- 积分:1
-
使用 VB.Net 的条形码生成器
其关于条码生成器,它使用条码生成的基本概念集成 39 和 128 格式生成条码。
- 2023-06-25 07:45:03下载
- 积分:1
-
时间控制小程序,主要用于控制软件的时间管理,可一参考
时间控制小程序,主要用于控制软件的时间管理,可一参考-time control of small procedures, mainly used to control the time management software, a reference to the masses
- 2022-07-14 17:36:52下载
- 积分:1