-
Visual.C++高级界面特效制作百例,提供丰富多彩的界面编程实例
Visual.C++高级界面特效制作百例,提供丰富多彩的界面编程实例
-Visual.C++ Effects produced 100 cases of high-level interface, providing a variety of interface programming examples
- 2022-03-18 20:59:15下载
- 积分:1
-
c++实现教学计划
c++实现教学计划-c achieve Teaching Program
- 2022-05-17 08:32:21下载
- 积分:1
-
对某地方的降雨量进行计算,得出该地方的降水指标值
对某地方的降雨量进行计算,得出该地方的降水指标值-right place for the rainfall, come to the place of precipitation index value
- 2022-04-27 22:15:36下载
- 积分:1
-
这个我做的一款计算器的代码,大家可以参考一下.
这个我做的一款计算器的代码,大家可以参考一下.-I do this one calculator code, we can take a look.
- 2022-03-07 03:25:39下载
- 积分:1
-
这个源码包含一个复杂的计算器,这个计算器可以是一个很好的M。
这里包含一款精密计算器源码,这款计算器可以实现好多功能,运行环境VC++。-This source contains a sophisticated calculator, this calculator can be a good multi-function, operating environment VC++.
- 2022-11-10 20:00:03下载
- 积分:1
-
呼叫中心交换机监控器,可配合交换机完成队坐席的监听,指导等作用...
呼叫中心交换机监控器,可配合交换机完成队坐席的监听,指导等作用-Monitor call center switches, and with teams switch to complete the listening seat, the role of guidance
- 2022-08-20 01:48:01下载
- 积分:1
-
可以把对话框放到最顶的位置,也就是所谓的钉子按钮。利用子类化实现,使用方便。有较高的参考价值...
可以把对话框放到最顶的位置,也就是所谓的钉子按钮。利用子类化实现,使用方便。有较高的参考价值-dialog can put most of the top positions, the so-called nails button. The use of sub-categories of achievement and use. Have a high reference value
- 2022-03-11 01:55:13下载
- 积分:1
-
Cool ScrollBar
Cool ScrollBar
- 2023-01-07 14:20:03下载
- 积分:1
-
在设计一个应用程序时候往往会遇到大量的数据,而处理这些数据又会经常使用到表格。在使用表格对数据进行操作时能够既快速又准确...
在设计一个应用程序时候往往会遇到大量的数据,而处理这些数据又会经常使用到表格。在使用表格对数据进行操作时能够既快速又准确-application in the design of a procedure often encountered when large amounts of data, and the processing of these data will be used to form. The use of forms for data processing can be both fast and accurate
- 2023-01-11 07:00:04下载
- 积分: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