25 lines
534 B
C#
25 lines
534 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Specialized;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Controls;
|
|
|
|
namespace Plane.Windows.Maps
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for MapView.xaml
|
|
/// </summary>
|
|
public partial class MapView : UserControl
|
|
{
|
|
public MapView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|