Ardupilot2/Configurator/Configurator.Net/Core/IView.cs
mandrolic 3f9a077dbd Configurator.Net: Initial import
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1153 f9c3cf11-9bcb-44bc-f272-b75c42450872
2010-12-18 22:23:09 +00:00

10 lines
231 B
C#

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