Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 2405 → Rev 2406

/MKLiveView/v1.0/Source/GMapCustomMarkers/Circle.xaml
0,0 → 1,8
<UserControl x:Class="MKLiveView.GMapCustomMarkers.Circle"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="300" Width="300" Background="Transparent">
<Grid>
<Ellipse Stroke="Red" Opacity="0.44" StrokeThickness="4" />
</Grid>
</UserControl>
/MKLiveView/v1.0/Source/GMapCustomMarkers/Circle.xaml.cs
0,0 → 1,31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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;
using GMap.NET;
 
namespace MKLiveView.GMapCustomMarkers
{
/// <summary>
/// Interaction logic for Circle.xaml
/// </summary>
public partial class Circle : UserControl
{
public Circle()
{
InitializeComponent();
}
 
public PointLatLng Center;
public PointLatLng Bound;
}
}