質問編集履歴
1
Paramクラスを記載しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -33,3 +33,25 @@
|
|
33
33
|
|
34
34
|
|
35
35
|
```
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
```C#
|
40
|
+
|
41
|
+
public class Param:ICloneable,INotifyPropertyChanged
|
42
|
+
|
43
|
+
{
|
44
|
+
|
45
|
+
public event PropertyChangedEventHandler PropertyChanged;
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
public ReactiveProperty<Int32> a { get; set; } = new ReactiveProperty<Int32>(0, mode: ReactivePropertyMode.RaiseLatestValueOnSubscribe);
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
public ReactiveProperty<String> b { get; set; } = new ReactiveProperty<String>("0", mode: ReactivePropertyMode.RaiseLatestValueOnSubscribe);
|
54
|
+
|
55
|
+
}
|
56
|
+
|
57
|
+
```
|