You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

App.xaml.cs 377 B

1234567891011121314151617181920
  1. using ReactiveUI;
  2. using Splat;
  3. using System.Reflection;
  4. using System.Windows;
  5. namespace Shadowsocks.WPF
  6. {
  7. /// <summary>
  8. /// Interaction logic for App.xaml
  9. /// </summary>
  10. public partial class App : Application
  11. {
  12. public App()
  13. {
  14. Locator.CurrentMutable.RegisterViewsForViewModels(Assembly.GetCallingAssembly());
  15. }
  16. }
  17. }