2010-12-18 18:23:09 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using ArducopterConfigurator.PresentationModels;
|
|
|
|
|
|
|
|
|
|
namespace ArducopterConfigurator.Views
|
|
|
|
|
{
|
|
|
|
|
public partial class TransmitterChannelsView : TransmitterChannelsViewDesignable
|
|
|
|
|
{
|
|
|
|
|
public TransmitterChannelsView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2011-02-20 19:01:29 -04:00
|
|
|
|
|
2010-12-18 18:23:09 -04:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-13 05:25:54 -04:00
|
|
|
|
public override void SetDataContext(TransmitterChannelsVm vm)
|
2010-12-18 18:23:09 -04:00
|
|
|
|
{
|
2011-02-20 19:01:29 -04:00
|
|
|
|
BindButtons(vm);
|
|
|
|
|
|
|
|
|
|
|
2011-02-13 05:25:54 -04:00
|
|
|
|
TransmitterChannelsBindingSource.DataSource = vm;
|
2011-01-26 17:17:44 -04:00
|
|
|
|
|
|
|
|
|
if (Program.IsMonoRuntime)
|
2011-02-13 05:25:54 -04:00
|
|
|
|
vm.PropertyChanged += ((sender, e) => TransmitterChannelsBindingSource.ResetBindings(false));
|
2010-12-18 18:23:09 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Required for VS2008 designer. No functional value
|
|
|
|
|
public class TransmitterChannelsViewDesignable : ViewCommon<TransmitterChannelsVm> { }
|
|
|
|
|
}
|