-
这是一个简单菜单示例_Event实现,想设计菜单的的朋友可以借鉴...
这是一个简单菜单示例_Event实现,想设计菜单的的朋友可以借鉴-This is a simple sample menu _Event realized, would like to design the menu of a friend can learn from
- 2022-02-16 03:18:30下载
- 积分:1
-
使用EVC开发";家庭理财助手";,小…
使用EVC开发“家庭理财助手”,程序教小,使用了数据库操作,适用于EVC下数据库开发的学习-use EVC development "family financial management assistant", the small procedures, the use of the database operation, EVC under applicable to the study database development
- 2022-06-15 05:42:05下载
- 积分:1
-
发布网友潘立群制作的“VC++界面一揽子解决方案 3.0v”(非源码)
发布网友潘立群制作的“VC++界面一揽子解决方案 3.0v”(非源码) -release produced by netizens "VC interface 3.0V package solution" (source)
- 2022-05-27 13:29:01下载
- 积分:1
-
自动靠边的窗口(带讲解):::::::(说明见内)
自动靠边的窗口(带讲解):::::::(说明见内)-automatic sides of the window (with the brief description within ):::::::()
- 2022-02-04 11:41:20下载
- 积分: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
-
基于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
-
USkin是一套用于换肤的sdk。目前还在不断完善阶段。最终目标是提供对个人免费的换肤软件。...
USkin是一套用于换肤的sdk。目前还在不断完善阶段。最终目标是提供对个人免费的换肤软件。-USkin is a Eurocargo for the sdk. The current stage is constantly improving. The ultimate goal is to provide free of charge to individuals Eurocargo software.
- 2022-09-28 08:25:02下载
- 积分:1
-
QT扫雷 (windows编译)通用
资源描述主要运用的方法:
1、继承QLabel的来实现自己的Block类,
2、重写Block类的mousePressEvent(QMouseEvent* event)函数来响应相应鼠标事件,
3、使用QGirdLayout进行布局。
下面对每个性质进行分析:
性质1、应当是一开始就确定的,故在内部设置一个mine_flag_,由Block的构造函数初始化;
性质2、在内部设置一个标志ok_flag_,一开始默认为false,当外界访问了方块时,设置为true。那么访问操作为何?即鼠标左键事件,下面讨论;
性质3、当BlockArea每个方块构建完之后,此方块的数字就确定了,所以我们可以提供一个setNumber(int)函数,这个函数只应在设置BlockArea时调用;
性质4、内部设置一个mark_flag_,当外界进行设置操作时,进行。那么何为设置操作?即鼠标右键事件,下面讨论。
- 2022-01-21 00:57:01下载
- 积分:1
-
vb界面设计比较好的控件
vb界面设计比较好的控件--作OfficeXP那一套界面包括Outlook-vb interface design better controls-- for Erickson interface including those set Outlook
- 2022-07-27 08:36:56下载
- 积分:1
-
Address Book
简单的数据库项目对于收集有关数据库的知识非常有用。通讯录是学习数据库和实践开发编程的乞讨级工程。
- 2022-05-16 12:45:57下载
- 积分:1