コード例 #1
0
 //Adding
 public UProcessWindow(UObject elem, FormType type, string className)
 {
     DataContext = new UObjectViewModel(elem, type, className);
     InitializeComponent();
 }
コード例 #2
0
 //View and Edit
 public UEventWindow(UObject elem, FormType type)
 {
     DataContext = new UObjectViewModel(elem, type);
     InitializeComponent();
 }
コード例 #3
0
 //Adding
 public UBotanicGardenBuildingWindow(UObject elem, FormType type, string className)
 {
     DataContext = new UObjectViewModel(elem, type, className);
     InitializeComponent();
 }
コード例 #4
0
 //View and Edit
 public UStudyingBuildingWindow(UObject elem, FormType type)
 {
     DataContext = new UObjectViewModel(elem, type);
     InitializeComponent();
 }
コード例 #5
0
 //Adding
 public UTechniqueInventoryWindow(UObject elem, FormType type, string className)
 {
     DataContext = new UObjectViewModel(elem, type, className);
     InitializeComponent();
 }
コード例 #6
0
 //View and Edit
 public UTransportInventoryWindow(UObject elem, FormType type)
 {
     DataContext = new UObjectViewModel(elem, type);
     InitializeComponent();
 }