mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-05-26 18:52:05 +00:00
Remove XAMLStyler
This commit is contained in:
@@ -53,7 +53,7 @@ namespace DiscordChatExporter.Gui.Behaviors
|
||||
}
|
||||
|
||||
// Propagate selected items from view to model
|
||||
private void OnListBoxSelectionChanged(object sender, SelectionChangedEventArgs args)
|
||||
private void OnListBoxSelectionChanged(object? sender, SelectionChangedEventArgs args)
|
||||
{
|
||||
if (_viewHandled) return;
|
||||
if (AssociatedObject.Items.SourceCollection is null) return;
|
||||
@@ -62,7 +62,7 @@ namespace DiscordChatExporter.Gui.Behaviors
|
||||
}
|
||||
|
||||
// Re-select items when the set of items changes
|
||||
private void OnListBoxItemsChanged(object sender, NotifyCollectionChangedEventArgs args)
|
||||
private void OnListBoxItemsChanged(object? sender, NotifyCollectionChangedEventArgs args)
|
||||
{
|
||||
if (_viewHandled) return;
|
||||
if (AssociatedObject.Items.SourceCollection is null) return;
|
||||
|
||||
Reference in New Issue
Block a user