Files
@ 65c134a3d619
Branch filter:
Location: seniordesign-ui/Demo.WindowsPresentation/Source/App.cs - annotation
65c134a3d619
749 B
text/x-csharp
Initial import of mapping source (huge commit)
65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 | using System;
using System.Windows;
using GMap.NET;
namespace Demo.WindowsPresentation
{
public partial class App : Application
{
[STAThread()]
static void Main()
{
// Create the application.
Application app = new Application();
// Create the main window.
MainWindow win = new MainWindow();
// Launch the application and show the main window.
app.Run(win);
}
}
public class Dummy
{
}
public struct PointAndInfo
{
public PointLatLng Point;
public string Info;
public PointAndInfo(PointLatLng point, string info)
{
Point = point;
Info = info;
}
}
}
|