-
一个小小的聊天程序,客户端与服务器端的,功能还行,希望下载的朋友多多改进...
一个小小的聊天程序,客户端与服务器端的,功能还行,希望下载的朋友多多改进-A small chat program, the client and server side, and features line, want to download a friend try to do better
- 2022-03-01 07:29:03下载
- 积分:1
-
实现图片形状的窗口
实现图片形状的窗口-achieve the window shape
- 2022-08-13 12:58:00下载
- 积分:1
-
一个VC程序使用的MFC类,用于替换MFC提供的简单的Splash Window类,用法在源代码中进行了说明。...
一个VC程序使用的MFC类,用于替换MFC提供的简单的Splash Window类,用法在源代码中进行了说明。-procedures for the use of a VC MFC category, MFC provides for the replacement of the simple Splash Window category, usage of the source code for the illustration.
- 2022-10-21 12:45:03下载
- 积分:1
-
Interface switch controls the application of alarm button, in the hope that usef...
界面切换,报警按钮控件的应用,希望对大家有用-Interface switch controls the application of alarm button, in the hope that useful
- 2022-08-25 10:05:34下载
- 积分:1
-
窗口生成器
C++是一种使用非常广泛的电脑程序设计语言。它是一种静态数据类型检查的,支持多范型的通用 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-20 06:39:16下载
- 积分:1
-
这是在VB环境下实现向winamp效果的源码,使得整个界面非常的酷,很有型的哦...
这是在VB环境下实现向winamp效果的源码,使得整个界面非常的酷,很有型的哦-This is the VB environment to achieve the effect of Winamp source, which makes the interface very cool, very-um
- 2022-08-17 22:05:12下载
- 积分:1
-
Hangman游戏
Hangman的人是一张纸和铅笔的猜谜游戏,两个或更多的球员。一名球员认为一个词、 短语或句子和另一个试着猜提出字母或数字。要猜出的单词代表通过一行破折号,给字母、 数字和类别的数目。如果猜测玩家建议一个字母或数字发生在 word 中,其他玩家将其写入其正确的位置。如果在 word 中未出现的建议的字母或数字,其他玩家以理货马克绘制吊死的 manstick 图的一个组成部分。这场比赛是在时:示例游戏进度 ;答案是维基百科。猜测球员完成这个词,或正确猜测整个单词其他玩家完成该关系图:事实上,此图旨在吊死鬼的样子。虽然关于这幅画的坊间出现了辩论,[1] 它是今天仍在使用。教师常见的替代方法是绘制与十个苹果,擦除或划掉苹果的猜测都是用完树上的苹果。
- 2022-06-02 03:38:20下载
- 积分:1
-
VB小闹钟,主要涉及文本框控制,keypress事件,timer
VB小闹钟,主要涉及文本框控制,keypress事件,timer-VB small alarm clock, mainly related to the text box control, keypress, timer
- 2023-02-05 09:20:03下载
- 积分: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
-
信号连续采样源代码
信号连续采样源代码,下载后可以直接使用,非常方便,一块学习进步.......................
- 2022-01-26 14:51:57下载
- 积分:1