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.

MainWindow.xaml.cs 432 B

12345678910111213141516171819202122
  1. using ReactiveUI;
  2. using Shadowsocks.WPF.ViewModels;
  3. namespace Shadowsocks.WPF.Views
  4. {
  5. /// <summary>
  6. /// Interaction logic for MainWindow.xaml
  7. /// </summary>
  8. public partial class MainWindow
  9. {
  10. public MainWindow()
  11. {
  12. InitializeComponent();
  13. ViewModel = new MainWindowViewModel();
  14. this.WhenActivated(disposables =>
  15. {
  16. });
  17. }
  18. }
  19. }