質問編集履歴
3
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -98,7 +98,7 @@
|
|
98
98
|
|
99
99
|
### 発生している問題・エラーメッセージ
|
100
100
|
|
101
|
-
this.CheckItems.Value としているため、以下の処理を行うとAnyCheckedの通知?が来なくなってしまいます。
|
101
|
+
this.AnyChecked = this.CheckItems.Value としているため、以下の処理を行うとAnyCheckedの通知?が来なくなってしまいます。
|
102
102
|
|
103
103
|
```CSharp
|
104
104
|
|
@@ -110,14 +110,6 @@
|
|
110
110
|
|
111
111
|
|
112
112
|
|
113
|
-
### 試したこと
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
ここに問題に対して試したことを記載してください。
|
118
|
-
|
119
|
-
|
120
|
-
|
121
113
|
### 補足情報(FW/ツールのバージョンなど)
|
122
114
|
|
123
115
|
VisualStudio2017 C# WPF
|
2
タグ追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
1
誤字修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,9 @@
|
|
16
16
|
|
17
17
|
static class Model{
|
18
18
|
|
19
|
-
public static ReactiveProperty<List<
|
19
|
+
public static ReactiveProperty<List<Check>> BaseCheckItems {get;}
|
20
|
+
|
21
|
+
= new ReactiveProperty<List<Check>>( new List<Check>(){ new Check(), new Check() } );
|
20
22
|
|
21
23
|
}
|
22
24
|
|
@@ -34,7 +36,7 @@
|
|
34
36
|
|
35
37
|
.CombineLatest( x => x.Any( z => z ) )
|
36
38
|
|
37
|
-
.ToRea
|
39
|
+
.ToReactiveProperty();
|
38
40
|
|
39
41
|
|
40
42
|
|
@@ -42,7 +44,7 @@
|
|
42
44
|
|
43
45
|
}
|
44
46
|
|
45
|
-
public ReactiveProperty<List<
|
47
|
+
public ReactiveProperty<List<Check>> CheckItems {get;}
|
46
48
|
|
47
49
|
public ReactiveProperty<bool> AnyChecked {get;}
|
48
50
|
|
@@ -52,7 +54,7 @@
|
|
52
54
|
|
53
55
|
|
54
56
|
|
55
|
-
class
|
57
|
+
public class Check {
|
56
58
|
|
57
59
|
public ReactiveProperty<bool> IsChecked {get;} = new ReactiveProperty<bool>();
|
58
60
|
|