-
WinXP的方式借助JavaScript,CSS可以参考。HTML,JavaScript的使用
模范winxp的界面,用javascript做的 可以参考一些css.html,javascript的做法-mode winxp s interfaceby javascript ,can referent css.html,javascript s useable
- 2022-03-22 06:29:56下载
- 积分:1
-
用Webbrowser实现很漂亮的界面效果。
用Webbrowser实现很漂亮的界面效果。-Make a beautiful interface with a webbrowser control
- 2022-03-18 03:38:10下载
- 积分:1
-
用vc++环境开发图形界面程序
用vc++环境开发图形界面程序-vc environment with a graphical interface development proce
- 2022-01-25 14:51:02下载
- 积分:1
-
redis 测试工具
reids 测试数据工具上传,包含了一些数据,能够在任用平台用下去,也有些测试记录,方便让大家清晰的看到结果,不在去测试
- 2022-01-22 01:54:08下载
- 积分:1
-
Prof_UIS2.3 source code, a very beautiful Docking Windows Programming
Prof_UIS2.3源代码,非常漂亮的Docking Windows编程-Prof_UIS2.3 source code, a very beautiful Docking Windows Programming
- 2023-01-21 00:20:04下载
- 积分:1
-
软件启动画面
在进入执行界面前会自动启动一个画面.
软件启动画面
在进入执行界面前会自动启动一个画面.-Software startup screen before entering the implementation of the interface will automatically launch a screen.
- 2022-08-08 00:43:20下载
- 积分:1
-
你可以通过 画自己喜欢的图 ,写入资源 你就可以得到你想要的任何 有个性的 不规则的 很库的界面了...
你可以通过 画自己喜欢的图 ,写入资源 你就可以得到你想要的任何 有个性的 不规则的 很库的界面了-you can read-in resource by drawing what you interest in, and then, you can get any interfaces which are bardian,anomalous,and cool.
- 2022-08-16 12:46:16下载
- 积分:1
-
可以用在Delphi7中的皮肤控件,本人测试过,用起来很简单,效果也不错...
可以用在Delphi7中的皮肤控件,本人测试过,用起来很简单,效果也不错-can be used in the skin Delphi7 control, I tested, together with a very simple and the results would be good
- 2022-04-27 13:54:34下载
- 积分:1
-
改进的xp的explorer左侧导航栏,每栏内容可以随意修改,实现单排与多排,相应更改栏目标题功能。...
改进的xp的explorer左侧导航栏,每栏内容可以随意修改,实现单排与多排,相应更改栏目标题功能。-Improved xp left navigation bar of the explorer, the contents of each column can be modified to achieve single-row and multi-row, the corresponding function to change the column headings.
- 2022-03-11 21:06:05下载
- 积分: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