You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
562 B
C#

1 month ago
using System;
using System.Windows.Forms;
namespace DeepNestPort
{
public partial class AddSheetDialog : Form
{
public AddSheetDialog()
{
InitializeComponent();
}
public int SheetWidth { get; set; }
public int SheetHeight { get; set; }
private void button1_Click(object sender, EventArgs e)
{
SheetWidth = (int)numericUpDown1.Value;
SheetHeight = (int)numericUpDown2.Value;
DialogResult = DialogResult.OK;
Close();
}
}
}