增加通道配置界面
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using JinYuan.Models;
|
||||
using JinYuan.VirtualDataLibrary;
|
||||
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 LargeSquareOne
|
||||
{
|
||||
public partial class FrmInput : Form
|
||||
{
|
||||
public string CurGear
|
||||
{
|
||||
get
|
||||
{
|
||||
return txtGear.Text?.Trim();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public FrmInput()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public FrmInput(string gear)
|
||||
{
|
||||
InitializeComponent();
|
||||
this.txtGear.Text = gear;
|
||||
}
|
||||
|
||||
private void btnOk_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user