-
对学的管理,包括对学生的选择的课程,学生的信息的管理,添加修改,删除等...
对学的管理,包括对学生的选择的课程,学生的信息的管理,添加修改,删除等-For school management, including student choice of courses, students of information management, add edit, delete, etc.
- 2022-08-24 10:03:30下载
- 积分:1
-
带刻度的进度条组件
应用背景在开发生产应用报表时,经常需要用进度条的形式显示当前的生产计划,本组件模仿刻度尺的样式,可根据需要显示天、周、月、年的计划完成情况,根据配置的颜色显示不同阶段的完成情况,每个阶段可点击。关键技术采用了javascript及CSS样式,可以进行二次封装
- 2022-02-20 09:12:14下载
- 积分:1
-
Based on the qt spelling, T9 input method
Based on the qt spelling, T9 input method, set the digital, English, Chinese character input in one, can be used to support the touch screen embedded devices.
- 2022-04-08 18:10:49下载
- 积分:1
-
这是一个realplayer的源代码
这是一个realplayer的源代码-This is a source REALPLAYER
- 2022-05-23 05:37:01下载
- 积分:1
-
vc实现粘贴板功能,msdn例程,implement cliptext
vc实现粘贴板功能,msdn例程,implement cliptext-vc achieve paste board functions, flowing routines, implement cliptext
- 2022-01-21 20:12:58下载
- 积分:1
-
这是一个很酷的模仿RedHat红帽子操作系统界面的代码。支持真彩色Icon,里面附有几个很棒的有关Skin的控件源码....
这是一个很酷的模仿RedHat红帽子操作系统界面的代码。支持真彩色Icon,里面附有几个很棒的有关Skin的控件源码.-This is a cool imitate RedHat Red Hat operating system interface code. Icon support True Color, with a few terrific inside the Skin of control source.
- 2022-04-16 09:48:08下载
- 积分:1
-
the procedures for MPEG
该程序为mpeg-1视频语音遍解码程序提供了在VC下编译的图形用户界面。界面相当不错哟。-the procedures for MPEG-1 video codec voice times for the procedure under the VC compiler, graphical user interface. Yo interface is quite good.
- 2023-05-12 00:30:03下载
- 积分:1
-
vitality2007
Asp.net2.0轻量级模板开发架构和完整demo,非常不错。。。。
- 2023-01-11 11:10:04下载
- 积分:1
-
VC++屏幕作图程序,和电子画笔很相似,画图时自动隐藏主程序,可以设置程序是否是在最前端显示、设置画线颜色、画笔风格、启动时自动开始、精细,还可以设置热键等...
VC++屏幕作图程序,和电子画笔很相似,画图时自动隐藏主程序,可以设置程序是否是在最前端显示、设置画线颜色、画笔风格、启动时自动开始、精细,还可以设置热键等-VC++ screen mapping process, and the electronic brush is very similar to drawing automatically hide the main program, you can set the program whether it is in the most front-end display, set up drawing a line color, brush style, start automatically, fine, you can also set hot keys, etc.
- 2022-02-27 07:54:17下载
- 积分: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