-
MFC在窗口创建停靠窗口
里面有详尽的代码解释,主要是在程序主窗口中添加你所需要的停靠窗口,此窗口可以任意移动到你想移动到的地方,并可在其中进行一系列操作,比如添加树形空间等等
- 2022-03-25 05:56:45下载
- 积分:1
-
虚拟按键拨号程序
通过matlab实现上位机虚拟按键的界面设计,通过串口向下位机发送按键指令,当下位机51单片机接收到按键指令时,控制蜂鸣器发声;同时界面上显示被按的按键值。
- 2022-02-22 12:47:35下载
- 积分:1
-
use API to change the menu, so that it has a couple of lists, like the Windows S...
使用API改变菜单,使之具有几列,如同Windows的开始菜单一样-use API to change the menu, so that it has a couple of lists, like the Windows Start menu, like
- 2022-05-14 05:36:12下载
- 积分:1
-
切分窗口中更新视图
切分窗口中更新视图-segmentation window View Update
- 2023-06-09 23:15:03下载
- 积分:1
-
仪器仪表模拟代码
来源于网络,完全开放的原代码,模拟几种仪表界面编程,非常漂亮完美,可参考借鉴
- 2022-04-17 06:32:19下载
- 积分:1
-
WIN98/2000自动修改IP程序
"AUTOIP 3.5"使用方法
WIN98/2000自动修改IP程序
"AUTOIP 3.5"使用方法
-WIN98/2000 IP automatically modified procedures "AUTOIP 3.5" use
- 2023-02-25 23:05:04下载
- 积分: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
-
imitation VC interface design produced labels
仿VC界面设计制作标签-imitation VC interface design produced labels
- 2022-01-25 14:54:44下载
- 积分:1
-
设计多颜色窗口接触面
设计的一个多彩的windows界面- Design more than colors windows contact surfaces
- 2022-01-26 04:32:57下载
- 积分:1
-
VC 线程控件,方便易用,美观
VC 线程控件,方便易用,美观 -VC-thread control, user-friendly, visual VC-thread control, user-friendly, visual
- 2022-03-10 08:19:47下载
- 积分:1