Ardupilot2/Configurator/Configurator.Net/Core/IView.cs
2011-02-13 09:25:54 +00:00

10 lines
228 B
C#

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