using System.Windows.Forms; namespace ArducopterConfigurator { public interface IView where Tmodel : IPresentationModel { void SetDataContext(Tmodel model); Control Control { get; } } }