-
大文件复制的程序
大文件复制的程序-large document reproduction procedures
- 2022-07-08 08:48:52下载
- 积分:1
-
WINFORM保存参数至本机注册表
实现在窗体关闭时将窗体中的参数保存变量至注册表,首先创建一个新的子路径,在子路径中创建变量,
如注册表中无此变量将自动创建,若下次有此变量时将更新变量。窗体再次载入时从注册表子路径读取
此变量信息,通过赋值给控件。
方法如下:
private void Form1_Load(object sender, EventArgs e) //窗体载入时
{
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
SetStyle(ControlStyles.AllPaintingInWmPaint, true);
SetStyle(ControlStyles.UserPaint, true);
SetStyle(ControlStyles.DoubleBuffer, true);
this.Refresh();
this.ShowInTaskbar = false;
this.PAN_1.Visible = false;
int Z_alpha,Z_red,Z_green,Z_blue; //声明4个Int类型颜色变量
//this.TransparencyKey = Color.Transparent;
RegistryKey myReg1, myReg2, myReg3;//声明注册表对象
myReg1 = Registry.CurrentUser;//获取当前用户注册表项
try
- 2022-03-19 08:35:30下载
- 积分:1
-
texture shows ballistic trajectory ballistic missile trajectory out
纹理显示所弹道 导弹 弹道-texture shows ballistic trajectory ballistic missile trajectory out-and-out
- 2022-04-21 20:11:54下载
- 积分:1
-
图形界面制作
图形界面制作-The production of graphical interface
- 2022-02-03 09:10:28下载
- 积分:1
-
小型公司工资管理系统 小型公司工资管理系统
小型公司工资管理系统 小型公司工资管理系统-small companies wage management system sma ll companies Salary Management System
- 2022-03-16 06:36:34下载
- 积分:1
-
基于LabVIEW 界面的简单演示程序
一个简单的基于LabVIEW 界面演示程序,帮助你快速学习开发LabView程序,相当于普通的helloword,快速易上手,
即使你从没有学过LabView,学会了这个程序,你会一下子感觉原来是这么的简单好学,好了,话不多说,学习起来吧。
- 2023-09-03 06:25:03下载
- 积分:1
-
嵌入式界面
嵌入式,界面,
- 2022-09-21 16:15:03下载
- 积分:1
-
与其他智能卡STK卡STK卡开放,开放平台介绍…
STK java卡 同其它智能卡一样,引入开放的STK卡开放平台非常必要。E飞l已在其协议中增加了有关JavaCa记的内容。GSM SIM卡采用lavaC耐API在保证安全的同时提供开放的SIM开发,使得STK应用在不同制造商的sIM卡上运行并得以建立空中管理SIM应用程序(Toolkit applet)下载。在开发过程中,软件开发商可采用开放的开发工具,开发出与Java兼容的SIM卡应用程序。-STK cards with other smart cards, the introduction of open STK cards open platform very necessary. L E fly in their agreement on the increase in the content JavaCa mind. GSM SIMlavaCAPISIMSTKsIMSIM(Toolkit applet) In the development process, software developers use open development tools, developed with the Java compatible SIM card applications.
- 2022-05-27 19:41:33下载
- 积分:1
-
delphi画布功能
画布功能,可以实现缩放等功能
- 2022-03-10 15:41:11下载
- 积分:1
-
使用Qt处理图片资源
Use Qt in image development.
QPixmap largepixmap;
QPixmap smallpixmap;
QPixmap maskpixmap;
QPixmap zoompixmap;
QPoint offset(0,0);
QPoint dragpos(150,150);
QPoint set(90,50);
//加载图片:
largepixmap.load("ImagesMainGui.png");
smallpixmap = largepixmap.scaled(largepixmap.size()/1.2);
maskpixmap.load("ImagesMainGui.png");
//绘制底层图片(非放大镜区域图案):
QPainter painter(this);
painter.drawPixmap(offset,smallpixmap);
painter.end();
//计算放大区域圆形的半径及所占矩形面积
int dim = qMin(width(), height());
int magnifierSize = dim * 5 / 6;
int radius = magnifierSize / 2;
int ring = radius - 15;
QSize box = QSize(magnifierSize, magnifierSize);
- 2022-02-09 22:59:08下载
- 积分:1