43 lines
817 B
C#
43 lines
817 B
C#
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();
|
|
}
|
|
}
|
|
}
|