Shell.xaml.cs 346 B

123456789101112131415161718192021222324
  1. using System.Windows;
  2. using System.ComponentModel.Composition;
  3. using System.Diagnostics.CodeAnalysis;
  4. namespace Editor
  5. {
  6. [Export]
  7. public partial class Shell : Window
  8. {
  9. public Shell()
  10. {
  11. InitializeComponent();
  12. }
  13. [Import]
  14. ShellViewModel ViewModel
  15. {
  16. set
  17. {
  18. this.DataContext = value;
  19. }
  20. }
  21. }
  22. }