-
在程序中实现窗口的任意分割,就像Visual Studio或Windows所做的那样。...
在程序中实现窗口的任意分割,就像Visual Studio或Windows所做的那样。-procedures in achieving the arbitrary division of the window, like Visual Studio or Windows do.
- 2022-05-07 21:24:18下载
- 积分:1
-
让窗体中的内容(包括控件)滚动
让窗体中的内容(包括控件)滚动-let the content (including controls) rolling
- 2022-12-31 22:10:06下载
- 积分: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
-
how to change the color of the control procedures as an example to ListBox
如何改变控件颜色 本程序以ListBox为例-how to change the color of the control procedures as an example to ListBox
- 2023-05-07 11:00:02下载
- 积分:1
-
关于学习程序界面的信息,
关于VC界面编程学习的资料,-on VC learning programming interface to the information,
- 2022-03-18 15:51:36下载
- 积分:1
-
请各位认真参考,同时还原大家和我联系西诶秀娥
请各位认真参考,同时还原大家和我联系西诶秀娥-please give serious consideration to, and I restore all links West eh Xiu-e Lala
- 2023-08-23 09:55:03下载
- 积分:1
-
高级看图软件源码
这是一个高级的图像查看器,包含一些WPF控件 (旋转、 放大 … … flib) 以及新的样式和动画
- 2022-08-19 02:10:01下载
- 积分:1
-
基于GDI Plus的Image List类,支持PNG, Alpha, 反色等功能。可以在此类的基础上扩展更多功能。...
基于GDI Plus的Image List类,支持PNG, Alpha, 反色等功能。可以在此类的基础上扩展更多功能。-A image list class based on GDI plus.
- 2023-06-21 19:45:03下载
- 积分: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
-
法国INSIDE公司的读卡模块M210的数据手册,包含相关的通讯指令。...
法国INSIDE公司的读卡模块M210的数据手册,包含相关的通讯指令。-France INSIDE" s reader module M210 data sheet, including related communications directives.
- 2023-02-15 22:05:03下载
- 积分:1