-
类似windows excel 表格的图形控件
类似windows excel 表格的图形控件,这是个demo,表明了各种不同特性的使用方式和实际效果;大家可以参考一下,还是不错的;
- 2022-07-20 16:44:30下载
- 积分:1
-
本程序短小精练,能够轻松实现数据的打印和预岚,值得参考一下
本程序短小精练,能够轻松实现数据的打印和预岚,值得参考一下-This procedure short and concise, can easily realize the print data and pre-lan, it is also useful to look
- 2022-09-21 00:50:03下载
- 积分:1
-
调用百度地图API的JS示例
简单的一个轨迹回放例子,用的是百度地图的javascript api关键点:轨迹坐标的数组+settimeout定时重复描点连线
- 2022-02-27 01:11:12下载
- 积分:1
-
一套扩展MFC的界面库,可以很方便的实现各种界面风格
一套扩展MFC的界面库,可以很方便的实现各种界面风格-Interface for a set of MFC extension library, you can easily achieve a variety of interface styles
- 2022-12-13 21:50:09下载
- 积分:1
-
This a full featured inventry controll system project
This a full featured inventry controll system project
- 2022-07-21 12:20:40下载
- 积分:1
-
定时关机程序
该程序模仿windows风格,实现的带有托盘的定时关机、重启、注销程序,虽然比较简单,对于VC初学者来说,还是比较有帮助,可以看看程序托盘的编程方法,和系统启动的实现过程。同时,也提供了计时器的详细实现过程和系统时间的处理函数,这些对于初学者可能有些收获。
- 2022-04-27 12:35:50下载
- 积分:1
-
project drugstore with c#
使用c#.net和数据库sqlserver的药店项目应用程序;
- 2022-12-18 09:20:03下载
- 积分:1
-
OutlookBar源码及示例.rar
OutlookBar源码及示例.rar-OutlookBar source code and demonstration rar
- 2022-01-26 05:11:38下载
- 积分: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
-
一个可以建立各种异形ToolTip的程序
一个可以建立各种异形ToolTip的程序- May establish each kind of different shape ToolTip the
procedure
- 2023-03-11 12:15:03下载
- 积分:1