2020-01-20 03:06:15 +01:00
|
|
|
|
using NmeaParser.Messages;
|
2014-11-15 09:10:24 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using System.Windows;
|
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
|
using System.Windows.Shapes;
|
|
|
|
|
|
|
|
|
|
|
|
namespace SampleApp.WinDesktop
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Interaction logic for GprmcControl.xaml
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial class GprmcControl : UserControl
|
|
|
|
|
|
{
|
|
|
|
|
|
public GprmcControl()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-02-20 07:55:08 +01:00
|
|
|
|
public Rmc Message
|
2014-11-15 09:10:24 +01:00
|
|
|
|
{
|
2019-02-20 07:55:08 +01:00
|
|
|
|
get { return (Rmc)GetValue(MessageProperty); }
|
2014-11-15 09:10:24 +01:00
|
|
|
|
set { SetValue(MessageProperty, value); }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static readonly DependencyProperty MessageProperty =
|
2019-02-20 07:55:08 +01:00
|
|
|
|
DependencyProperty.Register("Message", typeof(Rmc), typeof(GprmcControl), new PropertyMetadata(null));
|
2014-11-15 09:10:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|