PageRenderTime 51ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/View/ShellView.xaml.cs

https://github.com/cmath/SimpleLoginManager
C# | 33 lines | 27 code | 2 blank | 4 comment | 0 complexity | 3bb4d4ab6db07f1adc2d759d47264d4c MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.Composition;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Navigation;
  15. using System.Windows.Shapes;
  16. using Login.ViewModel;
  17. namespace Login
  18. {
  19. /// <summary>
  20. /// Interaction logic for MainWindow.xaml
  21. /// </summary>Pro
  22. ///
  23. [Export(typeof(IShellView)), Export]
  24. public partial class ShellView : Window, IShellView
  25. {
  26. public ShellView ( )
  27. {
  28. InitializeComponent( );
  29. }
  30. }
  31. }