私は wpf ウィンドウに動作を実装しようとしてきたため、現在のソリューションに System.Winodws.Interactivity への参照を追加し、目的の動作を記述しました。しかし、この動作を適用するには、Windows XAML で次のように記述する必要があります。
<Window x:Class="WpfApplication5.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525"
xmlns:behav ="clr-namespace:WpfApplication5"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity;assembly=System.Windows.Interactivity">
<Window.Resources>
<i:Interaction.Behaviors>
<behav:DialogIconRemoveBehavior></behav:DialogIconRemoveBehavior>
</i:Interaction.Behaviors>
</Window.Resources>
<Grid>
</Grid>
</Window>
ただし、これは有効なタグではありません。System.Windows.Interactivity から離れた他のアセンブリへの参照を追加する必要がある可能性があるためです。XAML でタグを使用するには、他に何をしなければならないかを提案してください。