AboutView.xaml.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using YJMPD_UWP.ViewModels;
  3. using Windows.UI.Xaml.Controls;
  4. namespace YJMPD_UWP.Views
  5. {
  6. public sealed partial class AboutView : Page
  7. {
  8. AboutVM aboutvm;
  9. public AboutView()
  10. {
  11. aboutvm = new AboutVM();
  12. this.DataContext = aboutvm;
  13. this.InitializeComponent();
  14. }
  15. private void YorickGit_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
  16. {
  17. Windows.System.Launcher.LaunchUriAsync(new Uri("http://github.com/yorickr"));
  18. }
  19. private void KennethGit_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
  20. {
  21. Windows.System.Launcher.LaunchUriAsync(new Uri("http://github.com/kennyboy55"));
  22. }
  23. private void JancoGit_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
  24. {
  25. Windows.System.Launcher.LaunchUriAsync(new Uri("http://github.com/jancoow"));
  26. }
  27. private void YorickSite_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
  28. {
  29. Windows.System.Launcher.LaunchUriAsync(new Uri("https://imegumii.space"));
  30. }
  31. private void KennethSite_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
  32. {
  33. Windows.System.Launcher.LaunchUriAsync(new Uri("http://kvewijk.nl"));
  34. }
  35. private void JancoSite_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
  36. {
  37. Windows.System.Launcher.LaunchUriAsync(new Uri("https://jancokock.me"));
  38. }
  39. }
  40. }