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 AcroConfigView : AcroControlDesignable
|
|
|
|
|
{
|
|
|
|
|
public AcroConfigView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-13 05:25:54 -04:00
|
|
|
|
public override void SetDataContext(AcroModeConfigVm 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
|
|
|
|
AcroModeConfigVmBindingSource.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) => AcroModeConfigVmBindingSource.ResetBindings(false));
|
2010-12-18 18:23:09 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Required for VS2008 designer. No functional value
|
|
|
|
|
public class AcroControlDesignable : ViewCommon<AcroModeConfigVm> { }
|
|
|
|
|
}
|