-
在C语言中使用汇编语言设计边框范例
在C语言中使用汇编语言设计边框范例-in the C language used assembly language frame design paradigm
- 2022-04-22 12:48:15下载
- 积分:1
-
在VC++下的windows界面编程,运用画笔、画刷实现了图形界面的编程控制...
在VC++下的windows界面编程,运用画笔、画刷实现了图形界面的编程控制-in VC under the windows programming interface, using brushes, brush painting to achieve a graphical programming interface control
- 2022-03-17 10:40:25下载
- 积分: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
-
animation icon source code, detailed programming process to go Dan technology Ho...
动画图标源代码,详细编程过程可去龚建伟技术主页www.gjwtech.com查看-animation icon source code, detailed programming process to go Dan technology Home www.gjwtech.com View
- 2022-09-01 03:55:03下载
- 积分:1
-
窗体分割开发例子
窗体分割开发例子-Form segmentation Development example
- 2022-02-06 23:45:00下载
- 积分:1
-
制作VC6的界面
制作VC6的界面-production VC6 interface
- 2023-01-19 12:25:03下载
- 积分:1
-
file drop javascript
- 2022-03-19 11:08:39下载
- 积分:1
-
显示目录的对话框,支持文件显示
显示目录的对话框,支持文件显示-show directory dialog, support documents show
- 2022-05-25 08:15:53下载
- 积分:1
-
WebBase工作
应用背景我们九月的“社会选择”项目本月的社区选举 ;PSEint,西班牙语的编程学生伪代码解释器。PSEint是一个工具,协助规划在他们的第一个步骤的学生。通过一个简单而直观的伪语言在西班牙语,关键技术PHP ;我们九月的“社会选择”项目本月的社区选举
- 2022-02-13 06:25:38下载
- 积分:1
-
一个提示框的实现方法, 另类tooltip
一个提示框的实现方法, 另类tooltip-Realize a prompt box method, alternative tooltip
- 2022-02-05 16:01:01下载
- 积分:1