<i:interaction.behavior =“”>选项不适用于应用行为</i:>

时间:2013-09-13 04:46:29

标签: wpf xaml mvvm blend attachedbehaviors

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

1 个答案:

答案 0 :(得分:8)

在浪费了我一个小时后,我才知道只有我必须将System.Windows.Interactivity作为参考包含,并且我已经完成了。

问题是行为不能在任何控件的Resource部分声明。

我接下来的那一刻

<i:Interaction.Behaviors>

</i:Interaction.Behaviors>

在资源之外,它运作良好。

所以,结论只有System.Windows.Interacivity是唯一需要的。

永远不要声明该行为属于资源或风格。