-
Swing控件中编辑窗格的使用技术。包括JSplitPane和JEditorPane。
Swing控件中编辑窗格的使用技术。包括JSplitPane和JEditorPane。-Swing edit pane controls the use of technology. Including JSplitPane and JEditorPane.
- 2022-03-16 22:43:31下载
- 积分:1
-
绘制可以拖拽的漂亮窗体,更换bmp图片及修改绘制区域大小则可以制作出漂亮的窗体。...
绘制可以拖拽的漂亮窗体,更换bmp图片及修改绘制区域大小则可以制作出漂亮的窗体。-draw face
- 2022-03-15 03:04:54下载
- 积分:1
-
源代码帧识别
Frame recognition with source code
- 2022-03-07 03:39:43下载
- 积分:1
-
a software use for ftp transport
a software use for ftp transport
- 2022-05-30 21:39:05下载
- 积分:1
-
image rotation control, rotating images of various image formats, rotary control...
图像旋转控件,可以旋转各种图像格式的图像,旋转控制十分方便-image rotation control, rotating images of various image formats, rotary control is very convenient.
- 2022-04-28 16:29:56下载
- 积分: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
-
is a visuel application for management a worker
is a visuel application for management a worker-is a visuel application for management a worker
- 2023-05-17 17:25:03下载
- 积分:1
-
Examples of visual programming windows
windows可视化编程实例-Examples of visual programming windows
- 2022-01-25 15:14:20下载
- 积分:1
-
本程序是一个环境中的一个环境,在建的菜单程序,例子,我,..
本程序是一个在vc环境下构建菜单程序的实例本人希望所有对vc可视化编程感兴趣的网友们分享本人的一点心得本程序有很强的代表性有利于读者举一反三-this procedure is an environment in vc Construction menu procedures examples I hope that all right vc Visual Programming interested netizens to share my experience of this program is a strong representation is conducive to draw inferences from readers
- 2022-06-14 02:37:46下载
- 积分:1
-
静态标定软件_MFC版
点击 MFC.exe 就可以运行程序。
有两种输入数据的方式。
$1.
文件输入
$1.1
比如我先把数据放在文件apple.txt中(这个txt文件要和MFC.exe文件放在同一个文件夹里,同时
txt里面的输入格式必须参照模板:apple.txt)
$1.2
例子:我要读取apple.txt里面的数据。
打开MFC.exe,在界面的左上方就会看到"1.读取文件",输入标定点的数目:这个例子中是6;
输入正反行程次数总和:这个例子中是6;输入txt文件名:这个例子中是apple.txt(不要忘记后缀txt)。
然后点击右下方的“运行”按钮,就可以看到结果。此时,点击“K=3”那个选择框,然后再点击“运行”
按钮,可以看到K=3时的重复性;
以上是第一种方法。
$2.
界面中输入
$2.1
在界面汇总依次输入数据(此时要求标定点X的个数必须是6,标定点Y的个数必须是36)
$2.2
这个例子可以参照压缩包文件中的说明。
- 2022-08-16 08:02:06下载
- 积分:1