-
本文件是一个用GTK+语言编写的界面,其中还包括了数据包的抓取。...
本文件是一个用GTK+语言编写的界面,其中还包括了数据包的抓取。-This document is a language used GTK interface, which includes a packet capture.
- 2022-09-22 02:55:03下载
- 积分:1
-
vc6调用系统控制面板的各种选项对话框,如声音,字体,打印机等,适合初学者学习...
vc6调用系统控制面板的各种选项对话框,如声音,字体,打印机等,适合初学者学习-vc6 called the System control panel options dialog box, such as voice, fonts, printers, etc., for beginners to learn
- 2022-04-19 19:37:49下载
- 积分:1
-
无边框窗体 + 外发光边框(半透明)
利用GDI+实现的无边框窗体 + 外发光边框(半透明)。
- 2022-01-24 13:23:21下载
- 积分:1
-
embedded database programs allow you to the procedure, has its own database of t...
嵌入数据库程序,让你的程序,拥有自己的最小的数据库。-embedded database programs allow you to the procedure, has its own database of the smallest.
- 2022-03-07 06:01:44下载
- 积分:1
-
33-66是:界面设计篇
67-84是:图形处理篇
85-100是:数值分析篇-33-66 is: interface design articles 67-84 is: graphics processing chapter 85-100 are: Numerical Analysis Section
- 2022-02-01 00:10:31下载
- 积分:1
-
本原码来自:thinking in java
本原码来自:thinking in java-yards from the Primitive : thinking in java
- 2022-11-12 04:15: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
-
achieve the arbitrary division of the window, using the static segmentation appr...
实现窗口的任意分割,使用静态分割的方法切分窗口,是通过使用CSplitterWnd类来完成的-achieve the arbitrary division of the window, using the static segmentation approach segmentation window, through the use of CSplitterWnd class completed
- 2022-09-16 14:40:03下载
- 积分:1
-
列表框-滚动条更新(LV8.6).vi
列表框-滚动条更新(LV8.6).vi,LAVIEW中关于多列列表框的使用,使用过程中,滚动条更新
- 2022-03-22 11:20:19下载
- 积分:1
-
FaceReconize
using Pca recognise detecte the face and choose U picture from the database .
- 2022-07-02 22:25:14下载
- 积分:1