13 lines
247 B
C#
13 lines
247 B
C#
using System.Windows.Controls;
|
|
|
|
namespace Sensus.Ui.FM2014TestBench.UserControls
|
|
{
|
|
public interface IUserControl
|
|
{
|
|
/// <summary>
|
|
/// Clear the content of the control
|
|
/// </summary>
|
|
void Clear();
|
|
}
|
|
}
|