mirror of https://github.com/ArduPilot/ardupilot
36 lines
945 B
C#
36 lines
945 B
C#
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;
|
|
using ArducopterConfigurator.Views;
|
|
|
|
namespace ArducopterConfigurator.views
|
|
{
|
|
public partial class FlightDataView : FlightDataViewDesignable
|
|
{
|
|
public FlightDataView()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
public override void SetDataContext(SensorsVm vm)
|
|
{
|
|
BindButtons(vm);
|
|
|
|
|
|
FlightDataVmBindingSource.DataSource = vm;
|
|
|
|
if (Program.IsMonoRuntime)
|
|
vm.PropertyChanged += ((sender, e) => FlightDataVmBindingSource.ResetBindings(false));
|
|
}
|
|
|
|
}
|
|
// Required for VS2008 designer. No functional value
|
|
public class FlightDataViewDesignable : ViewCommon<SensorsVm> { }
|
|
}
|