-
一个简易的基于C#的绘图板
资源描述可以画直线,圆 椭圆,多边形,折线等等,且能够创建工程,将画图元素进行保存,此外,还能对画图元素进行选择,删除和调整。还对画图元素的颜色和线条粗细进行修改。
- 2022-03-05 10:14:12下载
- 积分:1
-
一个类似股票软件分析家界面的程序,对界面感兴趣的朋友可下载看看,给点意见...
一个类似股票软件分析家界面的程序,对界面感兴趣的朋友可下载看看,给点意见-a similar stock analysts software interface procedures, interface interested can download to see friends, to the point
- 2022-03-31 22:34:25下载
- 积分:1
-
[soldiers] fighting roars dedicated suggest dedicated plug
[战士]战斗怒吼专用提示插件
WOW专用-[soldiers] fighting roars dedicated suggest dedicated plug-WOW
- 2022-04-09 05:09:18下载
- 积分:1
-
Splitter控件的文档程序,它使用CFormView类的作用。
这是一个关于Splitter控件的文档程序,它利用CFormView类实现了不同视图间的数据交互和控件响应。-Splitter controls on the documentation procedures, it uses CFormView category achieved between different views of the data and control interactive response.
- 2022-07-14 19:47:39下载
- 积分:1
-
滚动浏览位图的程序
滚动浏览位图的程序-rolling View bitmap procedures
- 2022-06-27 10:25:02下载
- 积分:1
-
windform C/S
winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例winform C/S实例
- 2022-10-06 18:35:04下载
- 积分:1
-
A WINDOC window interface, the active code can draw is VC++ Prepared
一个WINDOC窗口界面,有源代码提供,能画图,是VC++编写的-A WINDOC window interface, the active code can draw is VC++ Prepared
- 2022-09-04 03:05:04下载
- 积分:1
-
串行化SDI或MDK文档
串行化SDI或MDK文档-of SDI serial documents or refueling
- 2022-01-23 10:12:48下载
- 积分:1
-
用下来的程序代码,简单实用
一个倒计时的源代码,相对比较简单,但有用-code of countting down program,simle and usful
- 2023-02-26 18:20: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