We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 599a6d8 commit 4c98383Copy full SHA for 4c98383
src/DataGridExtensions/ListBoxSelectAllBehavior.cs
@@ -90,7 +90,10 @@ private void ListBox_CollectionChanged()
90
91
if (AreAllFilesSelected.GetValueOrDefault())
92
{
93
- listBox?.SelectAll();
+ if (listBox?.IsLoaded == true)
94
+ {
95
+ listBox.SelectAll();
96
+ }
97
}
98
99
src/DataGridExtensions/MultipleChoiceFilter.cs
@@ -245,9 +245,12 @@ private void Filter_Changed()
245
246
Text = filter?.Text;
247
248
- if (filter?.Items == null && listBox.IsLoaded)
+ if (filter?.Items == null)
249
250
- listBox.SelectAll();
+ if (listBox.IsLoaded)
251
252
253
254
return;
255
256
0 commit comments