-
可以在界面中分隔任何控件的分隔条
可以在界面中分隔任何控件的分隔条-interface can be separated in any segregation of control
- 2023-07-21 09:35:03下载
- 积分:1
-
again embarkation some simple java source code, here please the heart
再上船一些简单的java源代码,这里请大家笑纳了-again embarkation some simple java source code, here please the heart
- 2022-03-01 09:19:04下载
- 积分:1
-
CPU 算法
这是一个模拟的 CPU 算法的最短作业优先和循环赛。这可以帮助您的项目和案例研究。而且这我的编译。所以下降自由地看我的代码,以帮助其他人。谢谢你的积分。愿上帝保佑
- 2022-02-13 14:05:17下载
- 积分:1
-
DELPHI GDI 界面设计
一个用DELPHI 写GDI简单的界面源码
- 2022-01-25 19:26:55下载
- 积分:1
-
这是我找到的一个小程序,关于图形处理的,希望对大家有所帮助!...
这是我找到的一个小程序,关于图形处理的,希望对大家有所帮助!-This is what I found a small program on the graphics processing, we want to help!
- 2022-02-20 07:04:35下载
- 积分:1
-
simple interface and database, right datagrid control stdafx
简单的界面和数据库,右datagrid控件stdafx
- 2022-03-23 10:19:25下载
- 积分:1
-
记事本的源码,实现记事本基本功能,有一定的收藏价值
记事本的源码,实现记事本基本功能,有一定的收藏价值-source of the notebook, the notebook achieving basic functions of a certain value to the collection
- 2022-01-27 15:53:06下载
- 积分:1
-
VC模仿IE浏览器风格的多文档程序。这个浏览器是用vc6.0编写的,界面类似IE,但它是一个多文档程序,为了方便在各个窗口之间切换,工具条上加有一个窗口列表,你...
VC模仿IE浏览器风格的多文档程序。这个浏览器是用vc6.0编写的,界面类似IE,但它是一个多文档程序,为了方便在各个窗口之间切换,工具条上加有一个窗口列表,你可以在此毫不犹豫地快速切换窗口、也可以双击使窗口最大化。工具条采用IE风格,仅加入了最常用按钮。一些菜单功能没有实现,不过你可以用右键菜单中的功能来完成。-VC-style imitation of IE browser, multi-document program. This browser is written in vc6.0 interface similar to IE, but it is a multi-document program, in order to facilitate the switch between the various windows, plus there is a window on the toolbar list, where you can not hesitate to quickly switching window, you can double-click to make the window maximized. Toolbar with IE-style, only joined the most commonly used buttons. Some of the menu feature is not achieved, but you can right-click menu of features to complete.
- 2022-03-24 01:08:29下载
- 积分: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
-
LCD12864画图
LCD12864画图功能,使用C++语言,MSP430F5529单片机,可在LCD液晶屏上画任意图像,适用于界面开发等功能。
- 2022-11-24 01:10:03下载
- 积分:1