-
实现超级连接的例子
实现超级连接的例子-achieve hyperlinks example
- 2022-12-20 18:25:04下载
- 积分:1
-
以时钟显示界面,很漂亮的界面,可以编译运行,好资料
以时钟显示界面,很漂亮的界面,可以编译运行,好资料-the display with timer
- 2022-06-14 17:43:18下载
- 积分:1
-
该源程序能够实现对信号的调制与解调,且是通过Labview实现的...
该源程序能够实现对信号的调制与解调,且是通过Labview实现的-The source code can be achieved on the signal modulation and demodulation, and is achieved through the Labview
- 2022-10-22 02:50:03下载
- 积分:1
-
Learning to Recognize and Grasp Objects
Learning to Recognize and Grasp Objects
- 2022-01-24 18:58:37下载
- 积分:1
-
一个简单的使用例子 :如何在用户区显示一张位图
一个简单的使用例子 :如何在用户区显示一张位图-a simple using examle how to display a bitmap in user area
- 2022-05-26 12:25:57下载
- 积分: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
-
隐藏窗口的实例,可以对任意窗口操作,请试一试,里面有SDK的函数...
隐藏窗口的实例,可以对任意窗口操作,请试一试,里面有SDK的函数-window hidden example, can operate on any window, please try, and they SDK functions
- 2022-02-25 14:12:22下载
- 积分:1
-
QT界面下的字典
在windows平台上运行的窗体程序,可以实现:
1、查询单词(查词典中的单词解释);
2、录入生词本(手动加入生词或者加入已有的词库单词);
3、生词本的删除、保存和读取操作;
4、数据保存到数据库中。
单词库和生词库都存放在数据库中,因此可以方便的对他们进行增、删、改、查,把每个窗口定义为一个类,实现一个模块功能,通过c++编写菜单来调用各个窗口,实现相应功能。
- 2022-03-20 02:48:37下载
- 积分:1
-
eight digital vc realize the problem, beautiful interface, highly functional
八数码难题的vc实现,界面美观,功能很强-eight digital vc realize the problem, beautiful interface, highly functional
- 2023-02-02 06:50:03下载
- 积分:1
-
项目在 Atmega16 带液晶显示 SED1520
项目在 Atmega16 带液晶显示 SED1520 源代码。用西里尔文字体免费软件,为评价和非商业用途。
- 2022-05-31 02:57:02下载
- 积分:1