PositionUpdatedEventArgs.cs 318 B

1234567891011121314
  1. using Windows.Devices.Geolocation;
  2. namespace YJMPD_UWP.Helpers.EventArgs
  3. {
  4. public class PositionUpdatedEventArgs : System.EventArgs
  5. {
  6. public Geoposition Position { get; private set; }
  7. public PositionUpdatedEventArgs(Geoposition pos)
  8. {
  9. Position = pos;
  10. }
  11. }
  12. }