-
types Lane in the dialog box shows the temperature control
在对话框类型里温度显示控件-types Lane in the dialog box shows the temperature control
- 2022-01-24 14:11:10下载
- 积分:1
-
登录注册界面及连接数据库代码
简单的登录注册界面及socket连接数据库部分,用户,密码,登陆,注册,重置,以及IP地址。适合初学者。
- 2022-08-05 11:51:02下载
- 积分:1
-
一种使用C++ Builder编制而成的软件,界面漂亮,内容实用。
一种使用C++ Builder编制而成的软件,界面漂亮,内容实用。-use of a compiled C Builder software, interface beautiful, practical content.
- 2023-09-01 05:50:03下载
- 积分:1
-
with Chinese explanation ~! More effective in reading comprehension and applicat...
带有中文说明~!
更有力于阅读理解和应用・!~!
-with Chinese explanation ~! More effective in reading comprehension and application! ~!
- 2022-06-11 16:03:41下载
- 积分:1
-
This is a custom window to the original code, programming in VB.
这是个自定义窗口的原代码,通过VB编程实现.-This is a custom window to the original code, programming in VB.
- 2023-06-26 12:40:04下载
- 积分:1
-
项目在 Atmega16 带液晶显示 SED1520
项目在 Atmega16 带液晶显示 SED1520 源代码。用西里尔文字体免费软件,为评价和非商业用途。
- 2022-05-31 02:57:02下载
- 积分:1
-
使用wxWidget的界面编程例子代码,很有参考价值!
使用wxWidget的界面编程例子代码,很有参考价值!-Use programming interface wxWidget example code, very useful!
- 2022-02-04 09:30:48下载
- 积分:1
-
Anagrams_project_in_c #
它是一个简单的字谜词的益智游戏。在 c# 中作出。球员都造出来的字给出了随机字母。
- 2022-01-24 16:07:50下载
- 积分:1
-
为公司做的一款入箱软件,采用wpf技术,oracle数据库
为公司做的一款入箱软件,采用wpf技术,oracle数据库,折现统计图最为绚丽
- 2022-10-31 22:00:15下载
- 积分: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