We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da0895d commit 81270dcCopy full SHA for 81270dc
2 files changed
src/Controls/VCheckBoxGroup.xaml.cs
@@ -78,6 +78,10 @@ object newValue
78
(newValue as INotifyCollectionChanged).CollectionChanged += (
79
bindable as VCheckBoxGroup
80
).VCheckBoxGroup_CollectionChanged;
81
+ if (oldValue == null)
82
+ {
83
+ (bindable as VCheckBoxGroup).UpdateItemSelection((IList)newValue);
84
+ }
85
}
86
else
87
{
src/Controls/VCollection.xaml.cs
@@ -116,6 +116,10 @@ object newValue
116
117
bindable as VCollection
118
).VCollection_CollectionChanged;
119
120
121
+ (bindable as VCollection).UpdateItemSelection((IList)newValue);
122
123
124
125
0 commit comments