-
本程序运用了一些常用的游戏编程的技巧
本程序运用了一些常用的游戏编程的技巧-use of the procedures used by some of the game"s programming skills
- 2022-04-21 09:07:26下载
- 积分:1
-
computer graphics of a dynamic surface from the entire program, we can see where...
计算机图形学中的动态的曲面,从整个编程我们可以看出其中的思想所在-computer graphics of a dynamic surface from the entire program, we can see where the thinking
- 2023-07-16 16:50:03下载
- 积分:1
-
sparked a new round of pop
弹出窗口全攻略,提供了有关于网站中窗口弹出的一些方法,方便大家在网站上弹出窗口-sparked a new round of pop-up windows to provide a site on the pop-up window on some of the ways to facilitate on the site pop-up window
- 2023-08-30 18:45:03下载
- 积分:1
-
精品漂亮大气html5后台界面管理模板
应用背景关键技术
一个网站后台管理模板
- 2022-04-16 23:52:22下载
- 积分: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
-
一个Java 应用程序,用来显示2005年的日历。且单击“上月”和“下月”按钮,可用来显示上月和下月的日历...
一个Java 应用程序,用来显示2005年的日历。且单击“上月”和“下月”按钮,可用来显示上月和下月的日历-a Java application that used to show the 2005 calendar. But click "on" and "next month" button, can be used to display and next month on the calendar
- 2022-07-13 06:14:31下载
- 积分:1
-
简单二维号码生成程序
实现上很简单,就是为每个嘉宾生成一个二维码图片,通过彩信发送到手机,再专用识读设备上读取验证一下即可。csdn采用短信里包含网址链接的方式,打开是个二维码的方式也不错。
- 2022-05-21 15:17:24下载
- 积分:1
-
JAVA制作的图片浏览器
JAVA制作的图片浏览器,具有打开菜单。界面简洁大方是一个思路型代码,欢迎下载学习交流。
- 2023-07-20 23:40:04下载
- 积分:1
-
这是一个简单的界面编程,是一个基本的对话框。
这是一个简单的界面编程,是一个基本的对话框。-This is a simple programming interface, is a basic dialog box.
- 2023-04-16 12:35:03下载
- 积分:1
-
RainCalender a compact desktop calendar system, which takes up less resources. a...
RainCalender一种小巧的桌面日历系统,占用资源少,并有记事本,换肤等功能-RainCalender a compact desktop calendar system, which takes up less resources. and a notebook, Eurocargo features
- 2022-08-25 11:07:59下载
- 积分:1