VehicleCommandInsertView.xaml.cs 977 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  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 Prism.Regions;
  17. namespace OHV.Module.ListViews.SubViews
  18. {
  19. /// <summary>
  20. /// VehicleCommandInsertView.xaml에 대한 상호 작용 논리
  21. /// </summary>
  22. [ViewSortHint("02")]
  23. public partial class VehicleCommandInsertView : UserControl
  24. {
  25. public string Header { get; private set; }
  26. public VehicleCommandInsertView()
  27. {
  28. InitializeComponent();
  29. if (!DesignerProperties.GetIsInDesignMode(this))
  30. {
  31. this.Header = "Insert";
  32. }
  33. }
  34. }
  35. }