-
When you run a plain vanilla WTL wizard generated MDI application (WTL 3.1 and 7...
When you run a plain vanilla WTL wizard generated MDI application (WTL 3.1 and 7.0), you might have noticed that when you maximize an MDI child, then create a new MDI child, the children all go back to their "restored" state. What you d typically expect as a user is that the new child would be in the "maximized" state just like the last active child had been.
- 2023-03-26 06:30:03下载
- 积分:1
-
占用内存极少的菜单系统的实现,本程序可以实现中英文切换...
占用内存极少的菜单系统的实现,本程序可以实现中英文切换-Very little memory to achieve the menu system, this procedure can be achieved in both Chinese and English switch
- 2022-01-29 02:00:34下载
- 积分:1
-
周立功GUI
周立功提供的小型的GUI,蛮好用的,对于一些基本的点,线,汉字,英文操作都有。可以结合实际的产品进行使用的。
- 2022-04-12 15:07:29下载
- 积分:1
-
qt code has been compiled using mingw, qt a good school learning materials
qt 代码,已经用mingw编译好,不错的学qt学习资料-qt code has been compiled using mingw, qt a good school learning materials
- 2022-03-20 18:49:54下载
- 积分:1
-
矢量图形开发
详细介绍了vc界面下开发矢量图形的流程,步骤。对于初接触的很有帮助。包括从MFC、坐标转换、图形基本知识等有详细介绍。
- 2022-06-16 12:51:01下载
- 积分:1
-
man
人机界面开发的 C 语言程序库This help windowis very skinnybecause the helpwindow is automagicallysized to fitthe longesthelp line.~multipage_helpThis help screen will spill over to a 2nd page-man-machine interface development of C language program library This help windowis very skinnybecause the helpwindow is automagicallysized to fitthe longesthelp line. ~ Multipage_helpThis help screen will spill over to a 2nd page
- 2022-01-30 12:49: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
-
二维曲线的实现方法,用来画二维曲线 输入XY坐标即可以得到曲线图型...
二维曲线的实现方法,用来画二维曲线 输入XY坐标即可以得到曲线图型-two-dimensional curve of the method used to draw two-dimensional curve that is the importation of XY coordinates can be curve-
- 2023-06-10 03:45:03下载
- 积分:1
-
one fake outlook interface procedures, and includes the interface of the system,...
一款仿outlook的界面程序,并且包含了系统界面的部分,值得好好研究。-one fake outlook interface procedures, and includes the interface of the system, worthy of a thorough study.
- 2022-01-25 19:59:55下载
- 积分:1
-
完美实现了在statusbar上面的progressbar实现代码,效果佳。
完美实现了在statusbar上面的progressbar实现代码,效果佳。-perfect realization of the statusbar progressbar achieve the above code, the effect good.
- 2022-05-15 02:36:54下载
- 积分:1