29 lines
579 B
C#
29 lines
579 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
using TBF.Resources;
|
|
|
|
namespace TBF.UI.Shared
|
|
{
|
|
public partial class RemarkDlg : Form
|
|
{
|
|
public string Remark;
|
|
|
|
public RemarkDlg()
|
|
{
|
|
InitializeComponent();
|
|
|
|
this.Icon = Properties.Resources.TBF_icon;
|
|
|
|
Text = Strings.Remark;
|
|
textBox1.Text = Remark;
|
|
}
|
|
|
|
private void closeButton_Click(object sender, EventArgs e)
|
|
{
|
|
Remark = textBox1.Text;
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
}
|
|
}
|