1

我的按钮应该在一定数量的鼠标悬停后改变颜色,但是多重绑定不能正常工作。

我的应用程序中的按钮具有以下样式:

    <Style TargetType="Button">
        <EventSetter Event="MouseEnter" Handler="OnMouseEnterButton"/>
        <Style.Triggers>
            <MultiTrigger>
                <MultiTrigger.Conditions>
                    <Condition Property="Content" Value="0"/>
                    <Condition Property="IsMouseOver" Value="False"/>
                </MultiTrigger.Conditions>

                <MultiTrigger.Setters>
                    <Setter Property="Background" Value="Green"/>
                </MultiTrigger.Setters>
            </MultiTrigger>
        </Style.Triggers>
   </Style>

我的按钮看起来像这样:

<Button Name="button1">1</Button>

使用以下事件处理程序:

private void OnMouseEnterButton(object sender, RoutedEventArgs e)
{
    ((Button)sender).Content = (int.Parse(((Button)sender).Content.ToString())) + 1;
}

但是,如果 Button.Content 条件的值与初始值不同。例如:<Condition Property="Content" Value="10"/>触发器停止工作。

4

1 回答 1

2

问题是您正在将一个System.Int32值(在代码中设置)与一个System.String值(在条件中定义)进行比较。

有两种方法可以解决此问题:

1)将样式条件更改为:

    <Condition Property="Content">
        <Condition.Value>
            <sys:Int32>10</sys:Int32>
        </Condition.Value>
    </Condition>

您必须在其中添加命名空间xmlns:sys="clr-namespace:System;assembly=mscorlib"

或将您的代码更改为:

((Button)sender).Content = ((int.Parse(((Button)sender).Content.ToString())) + 1).ToString();
于 2010-11-23T12:34:13.237 回答