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 342 B

1234567891011121314151617
  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 : ReactiveWindow<MainWindowViewModel>
  9. {
  10. public MainWindow()
  11. {
  12. InitializeComponent();
  13. }
  14. }
  15. }