回答編集履歴

1

Bootstrapper のサンプルに関連する using 文を追加した。

2018/06/29 17:27

投稿

toydev
toydev

スコア297

test CHANGED
@@ -26,6 +26,12 @@
26
26
 
27
27
  ```C#
28
28
 
29
+ using Microsoft.Practices.Unity;
30
+
31
+ using Prism.Unity;
32
+
33
+
34
+
29
35
  namespace UserControlSample
30
36
 
31
37
  {
@@ -53,6 +59,10 @@
53
59
  Container.RegisterType<MainWindowViewModel>(new ContainerControlledLifetimeManager());
54
60
 
55
61
  }
62
+
63
+
64
+
65
+ // ...
56
66
 
57
67
  }
58
68