質問編集履歴
1
公開できない内容の割愛
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,17 +38,7 @@
|
|
38
38
|
|
39
39
|
```Xaml
|
40
40
|
|
41
|
-
<Window x:Class="ApprovalFlow.Views.ApprovalFlowRegist"
|
42
|
-
|
43
|
-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
44
|
-
|
45
|
-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
46
|
-
|
47
|
-
xmlns:prism="http://prismlibrary.com/"
|
48
|
-
|
49
|
-
|
41
|
+
< !-- 省略 --
|
50
|
-
|
51
|
-
xmlns:local="clr-namespace:ApprovalFlow.ViewModels"
|
52
42
|
|
53
43
|
Height="360" Width="500"
|
54
44
|
|
@@ -56,7 +46,7 @@
|
|
56
46
|
|
57
47
|
<Window.Resources>
|
58
48
|
|
59
|
-
<local:
|
49
|
+
<local:TestViewModel x:Key="ViewModel"/>
|
60
50
|
|
61
51
|
</Window.Resources>
|
62
52
|
|
@@ -128,7 +118,7 @@
|
|
128
118
|
|
129
119
|
```C#
|
130
120
|
|
131
|
-
public class
|
121
|
+
public class TestViewModel : BindableBase, INotifyPropertyChanged
|
132
122
|
|
133
123
|
{
|
134
124
|
|
@@ -144,7 +134,7 @@
|
|
144
134
|
|
145
135
|
|
146
136
|
|
147
|
-
public
|
137
|
+
public TestViewModel()
|
148
138
|
|
149
139
|
{
|
150
140
|
|
@@ -282,13 +272,7 @@
|
|
282
272
|
|
283
273
|
```Xaml
|
284
274
|
|
285
|
-
<
|
275
|
+
< !-- 省略 --
|
286
|
-
|
287
|
-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
288
|
-
|
289
|
-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
290
|
-
|
291
|
-
xmlns:prism="http://prismlibrary.com/"
|
292
276
|
|
293
277
|
Width="340" Height="60"
|
294
278
|
|