-
简单的界面操作,包含了文本框对输入字符的编辑,打开文件查找框,使用定时器,非常适合于初学者...
简单的界面操作,包含了文本框对输入字符的编辑,打开文件查找框,使用定时器,非常适合于初学者-dialog contrl
- 2022-03-11 07:59:01下载
- 积分:1
-
winamp 插件程序,大家有兴趣研究
winamp 插件程序,大家有兴趣研究 -Winamp plug-in procedures, we are interested in studies
- 2022-05-18 23:32:29下载
- 积分:1
-
包含了Visual Studio 和 Outlook等风格的界面,有源码和大量例程
包含了Visual Studio 和 Outlook等风格的界面,有源码和大量例程-The libarary which contains the Visual Studio and Outlook style interface, has sourcecode and manay examples
- 2022-06-21 15:39:05下载
- 积分:1
-
VC++矢量绘图程序 自己写的
VC++矢量绘图程序 自己写的-VC++ Vector drawing program written in their own
- 2022-04-28 10:44:09下载
- 积分:1
-
good system, vc programming interface to achieve control of the use of tree
很好的系统,vc++ 界面编程,实现树型控件的使用-good system, vc programming interface to achieve control of the use of tree
- 2022-02-02 13:44:37下载
- 积分:1
-
delphi数字图像处理一书源代码,科学出版社出版.
delphi数字图像处理一书源代码,科学出版社出版.-digital image processing, a source book, the scientific publishing house.
- 2023-03-29 16:50:04下载
- 积分:1
-
有时候我们制作了很多个属性页,由于页数过多分成了几行,这是的用户难以分辨到底哪一个是被激活的.所以,我制作了这段代码,把激活的属性页的标题文字设为高亮....
有时候我们制作了很多个属性页,由于页数过多分成了几行,这是的用户难以分辨到底哪一个是被激活的.所以,我制作了这段代码,把激活的属性页的标题文字设为高亮.-Sometimes we produce a lot of attributes page, the page is divided into a few too many firms, it is difficult to distinguish the users which in the end was an activated. So, I produced this code, activation of the title page attribute set highlighted text.
- 2023-05-13 03:20:02下载
- 积分: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
-
This is a small flash procedure for the design of navigation, web pages more liv...
这是一个flash小程序,用于导航条的设计,使网页更加生动活泼-This is a small flash procedure for the design of navigation, web pages more lively
- 2022-05-22 05:53:55下载
- 积分:1
-
一个完整的图书管理系统,功能强大完整,利用C++和数据库的连接形成管理系统,完美的源代码...
一个完整的图书管理系统,功能强大完整,利用C++和数据库的连接形成管理系统,完美的源代码-a complete library management system, powerful integrity, the use of C and the database management system of connected, the perfect source code! !
- 2022-03-06 08:01:58下载
- 积分:1