-
选取制定区域的颜色
选取制定区域的颜色- The selection formulates the region color
- 2022-03-19 14:40:46下载
- 积分:1
-
该源码能够实现在VC环境下的所绘图形保存为位图文件,可以很好的帮助大家实现位图保存。...
该源码能够实现在VC环境下的所绘图形保存为位图文件,可以很好的帮助大家实现位图保存。-the source can be achieved in the VC environment for the preservation of imperial graphics bitmap file that can be good to help you achieve bitmap preservation.
- 2023-02-24 03:50:03下载
- 积分:1
-
简单的绘图小程序-动态画直线
资源描述与Windows的画图工具一样,在利用鼠标画一条直线时,按住鼠标并拖曳,动态的画出当前直线,当释放后才真正画出一条需要的直线,并实现了窗口重绘功能
- 2022-08-08 14:41:08下载
- 积分:1
-
很好的系统,vc ++对话框的编程.实现选择
很好的系统,vc ++对话框的编程.实现选择-good system, vc dialog programming. Achieving choice
- 2023-06-13 16:30:03下载
- 积分:1
-
语法验证程序
它显示其认为与一些拼写错误的单词突出显示可以通过从一些可能的替代选择更正错误。可以传播所请求的更改。等。
- 2022-08-17 00:32:09下载
- 积分:1
-
一个非常好的多视图例子
一个非常好的多视图例子-a very good example of multi-view
- 2023-01-16 10:20:04下载
- 积分:1
-
大文件复制的程序
大文件复制的程序-large document reproduction procedures
- 2022-07-08 08:48:52下载
- 积分:1
-
management process, the producer consumer issues as long as it is described proc...
进程管理中的生产者消费者问题 只要是是描述进程管理中生产者与消费者在共享文件时是否同步与互斥问题-management process, the producer consumer issues as long as it is described process management producers and consumers when sharing files synchronized with the Mutual Exclusion
- 2022-02-21 06:28:34下载
- 积分: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
-
use API to change the menu, so that it has a couple of lists, like the Windows S...
使用API改变菜单,使之具有几列,如同Windows的开始菜单一样-use API to change the menu, so that it has a couple of lists, like the Windows Start menu, like
- 2022-05-14 05:36:12下载
- 积分:1