mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 01:46:24 +00:00
18 lines
377 B
C#
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; }
|
|
}
|
|
}
|
|
}
|