-
用鼠标从一个进程的button,拖到另外进程中,并能将信息复制过来...
用鼠标从一个进程的button,拖到另外进程中,并能将信息复制过来-With the mouse from a process button, drag the other process, and are able to copy information from
- 2022-03-29 09:03:31下载
- 积分:1
-
MAC样式的按钮, MAC样式的按钮,MAC样式的按钮
MAC样式的按钮, MAC样式的按钮,MAC样式的按钮-style button MAC, MAC-style button, the button styles MAC, MAC-style button
- 2022-06-12 06:23:03下载
- 积分: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
-
提供一个可以动态创建平面曲线图、饼图及直方图的二次开发平台。...
提供一个可以动态创建平面曲线图、饼图及直方图的二次开发平台。-provide a dynamically create planar curves, histograms and pie in the secondary development platform.
- 2022-07-03 11:09:04下载
- 积分:1
-
软件简介:一个模仿MSN_Messenger的界面,给出了界面的制作。
软件简介:一个模仿MSN_Messenger的界面,给出了界面的制作。-software description : an imitation MSN_Messenger interface, the interface is produced.
- 2022-03-24 23:46:46下载
- 积分:1
-
选项为图形的列表框
选项为图形的列表框-The listbox whichs item is picture The listbox whichs item is picture
- 2023-05-29 09:25:03下载
- 积分:1
-
gridctrl控件的使用示例程序,程序中有关于gridctrl控件的属性设置、各种方法的使用...
gridctrl控件的使用示例程序,程序中有关于gridctrl控件的属性设置、各种方法的使用-gridctrl controls the use of sample procedures, process control gridctrl have on the properties settings, the use of various methods
- 2022-10-25 22:45:03下载
- 积分:1
-
基于GDI Plus的Image List类,支持PNG, Alpha, 反色等功能。可以在此类的基础上扩展更多功能。...
基于GDI Plus的Image List类,支持PNG, Alpha, 反色等功能。可以在此类的基础上扩展更多功能。-A image list class based on GDI plus.
- 2023-06-21 19:45: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
-
网络咖啡馆的论文
图形用户界面是关于网吧网站,我用我的论文,有主页,网页,时间表,画廊,关于和联系我用Dreamweaver6创建的设计,可能这个项目在不久的将来帮助你和我
- 2022-02-03 07:04:42下载
- 积分:1