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.

56 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace DeepNestPort
{
public partial class QntDialog : Form
{
public QntDialog()
{
InitializeComponent();
StartPosition = FormStartPosition.CenterParent;
}
public int Qnt=0;
public void Quit()
{
DialogResult = DialogResult.None;
try
{
Qnt = int.Parse(textBox1.Text);
DialogResult = DialogResult.OK;
Close();
}
catch
{
textBox1.BackColor = Color.Red;
textBox1.ForeColor = Color.White;
}
}
private void button1_Click(object sender, EventArgs e)
{
Quit();
}
private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
Quit();
}
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
textBox1.BackColor = Color.White;
textBox1.ForeColor = Color.Black;
}
}
}