NBTExplorer/Windows/CancelSearchForm.cs
2013-08-09 02:02:22 -04:00

18 lines
377 B
C#

using System.Windows.Forms;
namespace NBTExplorer.Windows
{
public partial class CancelSearchForm : Form
{
public CancelSearchForm ()
{
InitializeComponent();
}
public string SearchPathLabel
{
get { return _searchPathLabel.Text; }
set { _searchPathLabel.Text = value; }
}
}
}