From fa4bb3b693dd1d109540b55695fe0ee95d3ebd2f Mon Sep 17 00:00:00 2001 From: Alexey Golub Date: Fri, 27 Sep 2019 00:49:29 +0300 Subject: [PATCH] [GUI] Move to Microsoft.Xaml.Behaviors.Wpf from System.Windows.Interactivity.WPF --- .../Behaviors/MultiSelectionListBoxBehavior.cs | 2 +- DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj | 2 +- DiscordChatExporter.Gui/Views/RootView.xaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DiscordChatExporter.Gui/Behaviors/MultiSelectionListBoxBehavior.cs b/DiscordChatExporter.Gui/Behaviors/MultiSelectionListBoxBehavior.cs index 5f0144c..815be15 100644 --- a/DiscordChatExporter.Gui/Behaviors/MultiSelectionListBoxBehavior.cs +++ b/DiscordChatExporter.Gui/Behaviors/MultiSelectionListBoxBehavior.cs @@ -3,7 +3,7 @@ using System.Collections.Specialized; using System.Linq; using System.Windows; using System.Windows.Controls; -using System.Windows.Interactivity; +using Microsoft.Xaml.Behaviors; namespace DiscordChatExporter.Gui.Behaviors { diff --git a/DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj b/DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj index a7de1d3..fa97d6a 100644 --- a/DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj +++ b/DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj @@ -19,10 +19,10 @@ + - diff --git a/DiscordChatExporter.Gui/Views/RootView.xaml b/DiscordChatExporter.Gui/Views/RootView.xaml index 5eef3c7..b276a4c 100644 --- a/DiscordChatExporter.Gui/Views/RootView.xaml +++ b/DiscordChatExporter.Gui/Views/RootView.xaml @@ -5,7 +5,7 @@ xmlns:behaviors="clr-namespace:DiscordChatExporter.Gui.Behaviors" xmlns:converters="clr-namespace:DiscordChatExporter.Gui.Converters" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" - xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" + xmlns:i="http://schemas.microsoft.com/xaml/behaviors" xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:s="https://github.com/canton7/Stylet"