Plane.Libraries/Plane.Windows.Maps/MapView.xaml.cs

25 lines
534 B
C#
Raw Permalink Normal View History

2017-02-27 02:04:13 +08:00
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();
}
}
}