laatzen/FM2014TestApp/Ui/Fm2014sTest/UserControls/IUserControl.cs

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();
}
}