-
这是一个很好的制作图像特效的例程,可以根据自己的需要进行适当的改编,达到更好的效果。...
这是一个很好的制作图像特效的例程,可以根据自己的需要进行适当的改编,达到更好的效果。-This is a very good production of images magic routines, according to their needs appropriately adapted to achieve better results.
- 2022-06-27 13:40:57下载
- 积分:1
-
这是对细胞图像进行处理,并且进行模拟的图像,可以实现对细胞的计数。...
这是对细胞图像进行处理,并且进行模拟的图像,可以实现对细胞的计数。-This is the cell image processing, and simulation images can be achieved on cell count.
- 2023-09-03 23:15:04下载
- 积分:1
-
如何设计启动界面?
如何设计启动界面?-activated interface design?
- 2023-06-19 05:20:04下载
- 积分:1
-
hexadecimal editor VC source revealed a total of three projects : Address, and h...
十六进制编辑器VC源码
共有三个显示项目:地址、十六进制代码和ascii码,还可以调节显示列数-hexadecimal editor VC source revealed a total of three projects : Address, and hexadecimal code ascii codes, but also can adjust a few shows out
- 2022-03-23 13:53:16下载
- 积分:1
-
活动皮肤4.3演示!C!
active skin 4.3 demo!!C
- 2022-07-23 03:47:53下载
- 积分:1
-
使用 MFC 串行化数据和 C++ 对象,三个简单的例子程序
使用 MFC 串行化数据和 C++ 对象,三个简单的例子程序-The use of MFC serialization data and C++ object, three simple examples of programs
- 2022-02-25 04:27:20下载
- 积分:1
-
本源码实现了无限级分类目录树的管理,需连接数据库。
本源码实现了无限级分类目录树的管理,需连接数据库。-Unlimited class classification tree management
- 2022-02-14 08:17:14下载
- 积分:1
-
一个创建非模态属性表的例子
一个创建非模态属性表的例子-create a non-modal examples Attribute Table
- 2023-02-01 05:45:03下载
- 积分: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
-
基于Qt的城市天气查询
点击查询按钮,从中国天气网获取当前天气的详细描述并提取显示在界面上。天气网api的返回格式为xml,需要输入城市代码,城市代码和名称写在配置文件weather.ini中,用户可更改查询其他城市。api的详细解析方法见 中国天气网API.mht文件。
- 2022-08-15 04:32:32下载
- 积分:1