-
MapX samples5 示例程序 驱动小车
MapX 示例程序,驱动小车,有自己的地图文件,,很实用的,用键盘驱动,A,D,W,S,这几个键,分别是向左,向右,向上,向下。
- 2023-09-05 19:00:04下载
- 积分:1
-
类似winamp那样的界面的源码
类似winamp那样的界面的源码-The sourcecode of implementing the UI as winamp
- 2022-02-10 17:09:33下载
- 积分:1
-
pulled in a run on the interface procedures used to achieve flights inquiries ma...
一个运行在WINCE上的界面程序,用于实现飞机航班的查询管理。程序不大,适用于初学者。-pulled in a run on the interface procedures used to achieve flights inquiries management. Procedures not apply to beginners.
- 2022-07-13 10:51:12下载
- 积分:1
-
程序说明: 本例使用API函数 CDdoor 来控制光驱门的开和关 程序十分简单,由于 CDdoor 函数自身包含了对异常 错误的处理机制,因此这个程序的通用性...
程序说明: 本例使用API函数 CDdoor 来控制光驱门的开和关 程序十分简单,由于 CDdoor 函数自身包含了对异常 错误的处理机制,因此这个程序的通用性很高,你可 以把这段代码移植到你的程序中,实现某些多媒体播 放器所常用的开关光驱的功能-procedures Note : In this example, using the API function CDdoor drive to control the doors opened and the clearance process is very simple, self-contained CDdoor function of abnormal error handling mechanism, the process is highly generic, you can put this code into your program and some multimedia player All are commonly used in the switch drive functions
- 2022-01-30 22:18:37下载
- 积分:1
-
NameSurfer Java Code By Curtisdjouf
大家好,
- 2022-01-25 18:26:25下载
- 积分:1
-
类似于金山毒霸界面的源程序
类似于金山毒霸界面的源程序-Jinshan drug tyrants interface similar to the source
- 2022-01-26 06:53:53下载
- 积分:1
-
选课管理系统
课堂大作业做的选课系统, 其中包括完整的数据库,学生选课的时候还有课程表的查询,界面美观,可以使用,里面还有完整的设计文档。需要的人可以进行学习研究一下,是第一次做的C#系统软件,很多不成熟的地方还请多多包涵。
- 2022-01-22 00:07:06下载
- 积分:1
-
use TreeView and ListView control in the resource management for the Interface
利用TreeView和ListView控件实现了资源管理器的界面-use TreeView and ListView control in the resource management for the Interface
- 2022-10-10 02:00:03下载
- 积分:1
-
自动识别验证码
在与服务端的连接建立以后,我们就可以通过此连接来发送和接收数据。端口与端口之间以流(Stream)的形式传输数据,因为几乎任何对象都可以保存到流中,所以实际上可以在客户端与服务端之间传输任何类型的数据。对客户端来说,往流中写入数据,即为向服务器传送数据;从流中读取数据,即为从服务端接收数据。对服务端来说,往流中写入数据,即为向客户端发送数据;从流中读取数据,即为从客户端接收数据
- 2022-09-20 08:55: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