diff --git a/Sadcoy/MainWindow.xaml.cs b/Sadcoy/MainWindow.xaml.cs index ec7066b..15eb4df 100644 --- a/Sadcoy/MainWindow.xaml.cs +++ b/Sadcoy/MainWindow.xaml.cs @@ -63,22 +63,16 @@ private void RunSw_Click(object sender, RoutedEventArgs e) } private void Exit_Click(object sender, RoutedEventArgs e) - { - this.Close(); - } + => this.Close(); private void Border_MouseDown(object sender, MouseButtonEventArgs e) - { - this.DragMove(); - } + => this.DragMove(); private void SupportMe_Click(object sender, RoutedEventArgs e) - { - System.Diagnostics.Process.Start(new ProcessStartInfo + => System.Diagnostics.Process.Start(new ProcessStartInfo { FileName = "https://github.com/Jisll/Sadcoy", UseShellExecute = true }); - } } }