tbf/TestBenchFramework/Forms/TabNameDlg.cs
2014-07-28 09:56:40 +02:00

32 lines
561 B
C#

using System;
using System.Windows.Forms;
using TBF.Resources;
namespace TBF.Forms
{
public partial class TabNameDlg : Form
{
public string TabNameLabel;
public string TabName;
public TabNameDlg()
{
InitializeComponent();
}
private void TabNameDlg_Load(object sender, EventArgs e)
{
Text = TabNameLabel;
tabNameTextBox.Text = TabName;
okButton.Text = Strings.OkBtnText;
}
private void okButton_Click(object sender, EventArgs e)
{
TabName = tabNameTextBox.Text;
DialogResult = DialogResult.OK;
Close();
}
}
}