-
里边有很多关于界面编程的例子,虽然简单,但是可以引导你入门。...
里边有很多关于界面编程的例子,虽然简单,但是可以引导你入门。-Inside interface has a lot of programming examples, although simple, but can guide you entry.
- 2022-04-21 04:37:08下载
- 积分:1
-
实现图片形状的窗口
实现图片形状的窗口-achieve the window shape
- 2022-08-13 12:58:00下载
- 积分:1
-
use TreeView and ListView control in the resource management for the Interface
利用TreeView和ListView控件实现了资源管理器的界面-use TreeView and ListView control in the resource management for the Interface
- 2022-10-10 02:00:03下载
- 积分:1
-
工业实时曲线绘制类
绘制饼图,柱形图等统计图,也可绘制各种实时曲线图,功能比较齐全,绘制的曲线的窗口可设置窗体颜色和背景颜色。功能强大,适合工业软件的界面使用。
- 2022-08-19 00:52:45下载
- 积分:1
-
GESTION STOCK LANGAGE C
GESTION、STOCK、GESTIONSTOCK、ACHAT、VENTE、FACTURE CODE C编程;
- 2023-08-21 04:50: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
-
均值,中位数,和高通滤波图像
资源描述aplikasi滤波是使用GUI matlab,杨。aplikasi ini等均值滤波、中值滤波、高通滤波的丹。
- 2022-08-26 12:05:52下载
- 积分:1
-
次程序主要是描述的学生的基本档案管理和成绩的管理。
次程序主要是描述的学生的基本档案管理和成绩的管理。-Times the procedure is described in the students the basic file management and performance management.
- 2022-02-21 07:47:34下载
- 积分:1
-
c++builder 画图程序
应用背景利用c++Builder 6.0 实现类似附件中画图的简单绘图程序,利用该程序,可以完成几种不同画笔间的切换,实现画图。关键技术通过TImage组件的更新功能自动实现图形的刷新,在调色工具栏中,应用TShape组件,并且利用自己创建的TCColorGrid组件完成所需的功能。
- 2022-05-25 00:41:32下载
- 积分:1
-
非常实用的放大镜,浮动窗体,可以放大屏幕到任何倍数.
非常实用的放大镜,浮动窗体,可以放大屏幕到任何倍数.-very useful magnifying glass, floating windows, can enlarge the screen to any multiples.
- 2022-02-13 19:12:06下载
- 积分:1