-
这是一个屏幕捕捉的程序,对初学者很有帮助,可以学习里面的一些编程思想...
这是一个屏幕捕捉的程序,对初学者很有帮助,可以学习里面的一些编程思想-This is a screen capture program, very helpful for beginners, can learn some programming ideas inside
- 2022-04-23 12:59:58下载
- 积分: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
-
我自己编的程,是关于边缘提取的,有些不完善的地方多提意见。...
我自己编的程,是关于边缘提取的,有些不完善的地方多提意见。-my own series of the trip is on the verge of extracting some flaws in their criticism.
- 2022-03-23 03:10:44下载
- 积分:1
-
A hospital medicine charge system source code, is very good,
suits the beginner,...
一个医院医药收费系统的源码,很不错,适合初学者,能够对数据库编程又深入的了解
- A hospital medicine charge system source code, is very good,
suits the beginner, can understanding which penetrates to the database
programming
- 2023-04-02 08:30:04下载
- 积分:1
-
VC 6.0msdn相似的界面风格,和数据库,搜索,索引表…
一种类似 vc++6.0MSDN风格的界面,和数据库结合,可实现搜索、索引、目录等功能,很实用,-vc 6.0MSDN a similar style of interface, and databases, to search, index, table of contents and other functions, is very practical,
- 2022-03-14 19:40:08下载
- 积分:1
-
a simple graphic image of a good useful with the vc c under the procedures, plea...
一个简单的图形图象方面的有用的很好的用c++在vc下实现的程序,请下载.-a simple graphic image of a good useful with the vc c under the procedures, please download.
- 2022-04-22 00:22:25下载
- 积分:1
-
此源文件可以使用和分配,而不受限制的提供。
This source file may be used and distributed without restriction provided that this copyright statement is not removed from the file and that any derivative work contains the original copyright notice and the associated disclaimer.
This software is provided “as is” and without any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. in no event shall the author or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services loss of use, data, or profits or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.
-This source file may be used and distributed without restriction p
- 2022-05-06 01:26:04下载
- 积分:1
-
shellcontrols VCL Delphi项目
ShellControls vcl delphi project
- 2022-03-17 04:10:17下载
- 积分:1
-
ER 图编辑器
这个项目生成的 ER 图编辑器工具。我们可以创建或编辑使用此工具的 ER 图。我们可以只需拖动每个组件使用 GUI 的 ER 图。
- 2022-03-09 11:08:35下载
- 积分:1
-
screesnap
screesnap--SimpleScreenCaptureServer.zip-screesnap-- SimpleScreenCaptureServer.zip
- 2022-03-24 18:15:45下载
- 积分:1