NBTExplorer/Windows/CancelSearchForm.cs

19 lines
377 B
C#
Raw Normal View History

using System.Windows.Forms;
namespace NBTExplorer.Windows
{
public partial class CancelSearchForm : Form
{
public CancelSearchForm ()
{
InitializeComponent();
}
2013-08-09 06:02:22 +00:00
public string SearchPathLabel
{
get { return _searchPathLabel.Text; }
set { _searchPathLabel.Text = value; }
}
}
}