我一直在尝试在 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 中使用标签