-
汉字点阵字库,可用于嵌入式系统,以c语言形式提供的汉字字库,非常实用。...
汉字点阵字库,可用于嵌入式系统,以c语言形式提供的汉字字库,非常实用。-Chinese font can be used in embedded systems, c language to the form of Chinese character, very practical.
- 2022-03-07 08:35:10下载
- 积分:1
-
有屏幕截图和带有半透明字体函数的例子
有屏幕截图和带有半透明字体函数的例子-There is a translucent screen shots and examples of fonts function
- 2022-08-15 21:31:50下载
- 积分:1
-
本教程是一本vb初级图文教程,初学vb的朋友可以下载看看.
本教程是一本vb初级图文教程,初学vb的朋友可以下载看看.-Directory is a primary transmission vb Guide, beginner vb friends can download to see.
- 2022-02-02 19:52:38下载
- 积分:1
-
界面部分 GDI+的使用 图片显示 和wmp的ocx的使用
界面部分 GDI+的使用 图片显示 和wmp的ocx的使用-Interface part GDI+ The use of picture display and the ocx use wmp
- 2022-01-30 10:10:47下载
- 积分: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
-
study artificial intelligence for a small design, VC 6.0 to achieve missionaries...
学习人工智能作的一个小设计,用VC++6.0来基本实现传教士和野人渡河问题,这个算法是应用深度优先搜索算法。-study artificial intelligence for a small design, VC 6.0 to achieve missionaries and savage river, the algorithm is the use of depth-first search algorithm.
- 2023-01-05 04:30:03下载
- 积分:1
-
labview点阵显示光栅测试物体形状
labview点阵显示光栅测试物体形状 网上资料只有波形,数字等显示,用点阵移动显示就更加直观。
- 2023-06-21 18:10:03下载
- 积分:1
-
按回车可直接跳到列表的下一个单元框,进行编辑,操作方便...
按回车可直接跳到列表的下一个单元框,进行编辑,操作方便-Press Enter to jump directly to a unit under the list box, for editing, easy to operate
- 2022-04-28 08:33:54下载
- 积分:1
-
介绍打开文件对话框时如何显示win2000界面,介绍相当详细,我已按照该方法调试通过...
介绍打开文件对话框时如何显示win2000界面,介绍相当详细,我已按照该方法调试通过
- 2022-12-20 05:35:03下载
- 积分:1
-
自定义滚动条,支持平滑、非平滑两种形状。可自定义颜色
自定义滚动条,支持平滑、非平滑两种形状。可自定义颜色-Custom scroll bars, to support smooth, non-smooth two kinds of shapes. Customizable colors
- 2022-10-12 18:15:04下载
- 积分:1