-
关于在mapx中如何使用自定义鼠标的问题。
关于在mapx中如何使用自定义鼠标的问题。-on how to use the definition of a mouse problem.
- 2022-05-19 09:33:40下载
- 积分:1
-
VCLSkin for Delphi v2.74,包括所有的源代码和数十种皮肤
VCLSkin for Delphi v2.74,包括所有的源代码和数十种皮肤-VCLSkin v2.74 for Delphi, including all source code and several dozens of skin
- 2023-01-20 19:10:04下载
- 积分:1
-
很简单的一个界面 请多多指教 谢谢!
很简单的一个界面 请多多指教 谢谢!-a very simple interface you will enlighten Thank you!
- 2023-08-08 06:35:03下载
- 积分:1
-
GUILib VC界面开发非常不错和有名的代码,不错
GUILib VC界面开发非常不错和有名的代码,不错-GUILib VC interface development is very good and well-known code, it is true
- 2022-03-19 19:03:51下载
- 积分:1
-
Introduction: Procedural original, CSS reference to a previous display of a stat...
简介:程序原创,CSS参考一个以前一个展示站的,时间有限,功能还不完善-Introduction: Procedural original, CSS reference to a previous display of a station, time is limited, function is not perfect
- 2022-05-25 19:51:44下载
- 积分:1
-
法国INSIDE公司的读卡模块M210的数据手册,包含相关的通讯指令。...
法国INSIDE公司的读卡模块M210的数据手册,包含相关的通讯指令。-France INSIDE" s reader module M210 data sheet, including related communications directives.
- 2023-02-15 22:05:03下载
- 积分:1
-
该程序完成(7,3)循环码的编码功能,并验证子
该程序完成(7,3)循环码的编码功能以及校验子译码功能,有良好的中文交互界面-The program is completed (7,3) cyclic code encoding functions, and verify sub-decoding functions, has a good Chinese language interface
- 2022-08-13 23:14:51下载
- 积分:1
-
指定形状创建一透明窗体,利用shape控件生成异形窗体,方便好用...
指定形状创建一透明窗体,利用shape控件生成异形窗体,方便好用-Specify the shape to create a transparent form, the use of shape control to generate special-shaped form, easy-to-use
- 2023-04-22 05:45:04下载
- 积分:1
-
VB USB-HID通讯调试工具源代码
资源描述
VB USB-HID通讯调试工具源代码
VB USB-HID通讯调试工具源代码
VB USB-HID通讯调试工具源代码
VB USB-HID通讯调试工具源代码
- 2023-07-16 08:40: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