-
一个简单的MFC编程的入门书。能够更好的帮助初学者和容易的。
一本简单的MFC编程入门书籍。能更好地帮助新手深入浅出地接受MFC.-A simple MFC programming book entry. Better able to help the novice and easily comprehensible manner acceptable MFC.
- 2022-02-06 19:16:20下载
- 积分:1
-
graphics and image processing, image processing VC Gray realized
图形与图像处理,图像灰度处理VC 实现之-graphics and image processing, image processing VC Gray realized
- 2022-10-29 20:00:02下载
- 积分: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
-
Mfc Picture Thumbnail
这是一个基于cximage和mfc的clistctrl的缩略图实现。
- 2022-04-18 20:21:13下载
- 积分:1
-
IDL二次开发实习内容作业包括打开各种格式的图像保存成各种格式,包括二进制、jpeg,tiff,对图像进行简单处理(平滑,增强,均衡化)...
IDL二次开发实习内容作业包括打开各种格式的图像保存成各种格式,包括二进制、jpeg,tiff,对图像进行简单处理(平滑,增强,均衡化)-Secondary development of practical content of IDL operations include opening a variety of formats to save images into a variety of formats, including binary, jpeg, tiff, a simple image processing (smoothing, enhancement, equalization)
- 2022-07-16 06:02:16下载
- 积分:1
-
一本图形编程的好书,摈弃了传统的GDI编程,适合初学者学习研究...
一本图形编程的好书,摈弃了传统的GDI编程,适合初学者学习研究-A graphical programming books, get rid of the traditional GDI programming, suitable for beginners study
- 2023-01-23 20:30:06下载
- 积分:1
-
通过图形用户界面控制小车
运用基于ARM
Cortex-M3内核的stm32单片机,并在其上移植了uc/os II操作系统。此外,为了能更好的进行人机交互,在前面的基础上移植了ucgui。完成了以上的基础准备工作后,制作了一个智能小车控制系统,控制界面是基于ucgui制作的一个图形用户界面,可以控制小车的启停以及速度和方向,运用蓝牙串口实现通信,用k60来控制小车的运动。
- 2022-03-24 19:02:05下载
- 积分:1
-
This project is a employee database management system.
This project is a employee database management system.
- 2023-01-22 21:45:04下载
- 积分:1
-
我发表的实例共有4个,这是实例3,请大家在编程上多留意本实例可以解决一般的难题,所以如果用得好
请与我多多联系.http://chenyaotanbb.ho...
我发表的实例共有4个,这是实例3,请大家在编程上多留意本实例可以解决一般的难题,所以如果用得好
请与我多多联系.http://chenyaotanbb.home.sunbo.net
下面是一免费的注册码网站也与大家分享:http://down.cqforest.com/-example, I made a total of four, three examples of this is, we pay more attention to programming on the general case can be solved the problems, if put to good use, please contact me a lot. Http://chenyaotanbb.home.sunbo.net Below is a free site license with the same home-sharing : http://down.cqforest.com/
- 2022-07-07 11:34:14下载
- 积分:1
-
from memory structure and create dialog, to prevent the application's resour...
从内存中构造和创建对话框, 防止应用程序的资源文件被串改-from memory structure and create dialog, to prevent the application"s resource file is altered
- 2022-08-14 10:08:25下载
- 积分:1