Files
6150-HMI/CowainHmi/PlcDataTable/FrmAddRow.cs
2026-01-15 15:06:36 +08:00

28 lines
607 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 CowainHmi
{
public partial class FrmAddRow : Form
{
public int RowCount { get; set; }
public FrmAddRow()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
RowCount = (int)this.rowCountInput.Value;
this.DialogResult = DialogResult.OK;
}
}
}