-
预测冰雹序列,是一个简单的迭代序列
预测冰雹序列,是一个简单的迭代序列-hail list
- 2022-10-18 14:00:03下载
- 积分:1
-
一个XP用户界面类
一个XP用户界面类-an XP user interface category
- 2022-08-25 13:53:49下载
- 积分:1
-
一个小游戏的源代码,游戏的内容是打砖块,希望对你有所帮助...
一个小游戏的源代码,游戏的内容是打砖块,希望对你有所帮助-a little game of source code, the game is Dazhuankuai, and I hope to help you! !
- 2023-06-26 15:05:03下载
- 积分:1
-
一个模拟windwos记事本的程序,用vs2008开发,还有很多不足,基本功能还是具备了...
一个模拟windwos记事本的程序,用vs2008开发,还有很多不足,基本功能还是具备了-An analog windwos Notepad program, using vs2008 development, there are many shortcomings, the basic function is to possess
- 2022-06-22 04:10:59下载
- 积分: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
-
Book: statistical pattern recognition
Book: statistical pattern recognition
- 2023-02-05 21:20:03下载
- 积分:1
-
cd 播放器的源码
本CD播放机是一个很酷的CD播放器编译开发CPP,也可以用代码编译:块...不需要有昂贵的Visual Studio...此代码将编译的开箱即用的。
- 2022-02-01 03:09:35下载
- 积分:1
-
一个用于处理mpeg码流的媒体播放器实例,可以播放DVD等。
一个用于处理mpeg码流的媒体播放器实例,可以播放DVD等。-a handle mpeg stream media player example, and can play DVD.
- 2023-07-07 01:30:05下载
- 积分:1
-
Winform可视化打印模板设计
Winform可视化打印模板设计
- 2023-06-01 13:15:02下载
- 积分:1
-
绘图程序vb
vb编写的表单程序,api绘图方式。可以用来生成数据图线。
可以修改图例样式。颜色。
可以修改数列的线性,颜色,
- 2022-07-11 17:44:41下载
- 积分:1