-
dynamic change and segmentation window
动态改变和分割窗口-dynamic change and segmentation window
- 2022-02-04 21:46:11下载
- 积分:1
-
VC无负担实现XP风格界面可以实现所有控件的XP风格,很实用
VC无负担实现XP风格界面可以实现所有控件的XP风格,很实用-VC burden without realizing XP style interface can control all the XP style, practical
- 2023-06-29 15:25:02下载
- 积分: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
-
Linux下的计算器
使用glade界面开发工具开画计算器的界面,然后用gtk+代码写出计算机界面代码能够运行出计算器界面。最后将各个按钮的功能以及如何使用的代码添加到代码里,最终编译出一个计算器。
- 2022-03-18 08:42:37下载
- 积分:1
-
VC++小游戏--五子棋开发
利用MFC开发一款人机界面交互的五子棋游戏,其中包括人-人对战,人-机对战,界面采用MFC视图,对于刚学习VC++的图像有很大帮助
- 2022-07-05 12:55:59下载
- 积分:1
-
心电波形显示
资源描述下位机传送数据到电脑上,本程序实时显示传输来的温度、大气压、加速度,并实时显示心电波形。使用labview来实现,有生物医学检测的相关问题大家可以一起互相交流。
- 2023-02-07 10:05:03下载
- 积分:1
-
这是一个用汇编语言编写的汉字显示程序,运行后的程序…
这是一个用汇编语言编写的汉字显示程序,在DOS环境下运行。-This is a compiled language with the Chinese character display program, running under DOS environment.
- 2023-07-09 07:55:03下载
- 积分:1
-
一个表格界面,基于mfc
一个表格界面,基于mfc-a forms interface, based on mfc
- 2022-07-02 04:32:48下载
- 积分:1
-
Scroll bar can also be used as separate components to use. The establishment of...
滚动条也可以作为单独的元件来使用。
建立水平滚动条的过程和其消息映射
-Scroll bar can also be used as separate components to use. The establishment of the horizontal scroll bar of the process and its message map
- 2022-07-13 18:31:04下载
- 积分:1
-
本代码提供了一个很好的进度条带滑块可以改变颜色的控件
本代码提供了一个很好的进度条带滑块可以改变颜色的控件-the code provided a good with the progress of the slider can change the color of Control
- 2022-05-27 21:22:37下载
- 积分:1