mirror of https://github.com/ArduPilot/ardupilot
31 lines
912 B
C#
31 lines
912 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(FlightDataVm model)
|
|
{
|
|
FlightDataVmBindingSource.DataSource = model;
|
|
|
|
if (Program.IsMonoRuntime)
|
|
model.PropertyChanged += ((sender, e) => FlightDataVmBindingSource.ResetBindings(false));
|
|
}
|
|
}
|
|
// Required for VS2008 designer. No functional value
|
|
public class FlightDataViewDesignable : ViewCommon<FlightDataVm> { }
|
|
}
|