mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-25 09:16:34 +08:00
版本初始化,建立主窗体页面
This commit is contained in:
26
HalconWindowTest/MainForm.cs
Normal file
26
HalconWindowTest/MainForm.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using HalconWindowTest.HalconWindow;
|
||||
|
||||
namespace HalconWindowTest
|
||||
{
|
||||
public partial class MainForm : Form
|
||||
{
|
||||
public MainForm()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void MainForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
this.panel1.Controls.Add(new HWindow_Final());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user