-
获取应用程序所用图标并显示在界面,双击所需要的图标进入单独显示界面,可转换为ICO文件...
获取应用程序所用图标并显示在界面,双击所需要的图标进入单独显示界面,可转换为ICO文件-Used to obtain the application icon and displayed in the interface need to double-click the icon to enter the separate display can be converted to ICO file
- 2022-03-04 17:18:35下载
- 积分:1
-
动态生成窗口控件, 使用YACC来分析控件配置文件
动态生成窗口控件, 使用YACC来分析控件配置文件-dynamically generated window controls, the use of YACC to control the configuration file analysis
- 2022-08-05 17:30:29下载
- 积分:1
-
本例子将教会初学者在VC++中如何使用标签控件
本例子将教会初学者在VC++中如何使用标签控件-this case will be in the church beginners how to use the VC label Controls
- 2022-07-20 04:16:15下载
- 积分:1
-
常用控件使用教程
常用控件使用教程-Control the use of commonly used Tutorial
- 2022-01-25 15:08:28下载
- 积分: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 fill color graphics on the interface procedures can be filled with different colors
- 2022-11-18 17:25:04下载
- 积分:1
-
在程序中使用不规则形状的按钮可以使程序的界面显得更加丰富多彩,与众不同,该程序演示了不规则安钮的实现方法。...
在程序中使用不规则形状的按钮可以使程序的界面显得更加丰富多彩,与众不同,该程序演示了不规则安钮的实现方法。-procedures in the use of the irregularly shaped button to make the program interface is more colorful, unusual, the program demonstrated a button on the irregular method.
- 2022-02-05 21:03:34下载
- 积分:1
-
IP的创始人
这是系统的一个纯粹的 gui 软件提供的 ip 地址、 主机名和 mac 地址的所有连接,与在同一网络中。
- 2022-03-22 02:56:45下载
- 积分:1
-
这是一个用汇编语言编写的程序,功能是运行后显示正弦曲线...
这是一个用汇编语言编写的程序,功能是运行后显示正弦曲线-This is a compilation of language used in the preparation of procedures, functions running shows sinusoid
- 2022-08-21 20:43:32下载
- 积分:1
-
实现位图的基本显示 可以从0,0向下运动 并且在其过程中 变大 应用 部分复制原理...
实现位图的基本显示 可以从0,0向下运动 并且在其过程中 变大 应用 部分复制原理-The realization of the basic display bitmap can be a downward movement from the 0,0 and in the course of copying large parts of the application of the principle of
- 2022-10-29 12:40:03下载
- 积分:1