/View/ShellView.xaml.cs
https://github.com/cmath/SimpleLoginManager · C# · 33 lines · 27 code · 2 blank · 4 comment · 0 complexity · 3bb4d4ab6db07f1adc2d759d47264d4c MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.Composition;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Navigation;
- using System.Windows.Shapes;
- using Login.ViewModel;
- namespace Login
- {
- /// <summary>
- /// Interaction logic for MainWindow.xaml
- /// </summary>Pro
- ///
- [Export(typeof(IShellView)), Export]
- public partial class ShellView : Window, IShellView
- {
- public ShellView ( )
- {
- InitializeComponent( );
-
- }
- }
- }