panSight3DForm/PanSight3DForm/Form1.cs
耿东亚 cf0585366e init
2024-09-15 11:29:15 +08:00

31 lines
646 B
C#

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;
namespace PanSight3DForm
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btn_cameraSetting_Click(object sender, EventArgs e)
{
tabControl2.SelectedIndex = 0;
}
private void btn_algSetting_Click(object sender, EventArgs e)
{
tabControl2.SelectedIndex = 1;
}
}
}