2

我正在尝试在 Silverlight 中创建模板化/自定义控件。

基本控件可以是System.Windows.Controls.Button. 该按钮具有以下视觉状态:

<vsm:VisualStateManager.VisualStateGroups>
    <!--Define the states for the common states. The states in a 
                            VisualStateGroup are mutually exclusive to each other.-->
    <vsm:VisualStateGroup x:Name="CommonStates">
        <!--Define the VisualStates in this VistualStateGroup.-->
        <vsm:VisualState x:Name="Normal"/>
        <vsm:VisualState x:Name="MouseOver" />
        <vsm:VisualState x:Name="Pressed" />
        <vsm:VisualState x:Name="Disabled" />
    </vsm:VisualStateGroup>
    <!--Define the states for the focus states. The states in a 
                            VisualStateGroup are mutually exclusive to each other.-->
    <vsm:VisualStateGroup x:Name="FocusStates">
        <!--Define the VisualStates in this VistualStateGroup.-->
        <vsm:VisualState x:Name="Focused" />
        <vsm:VisualState x:Name="Unfocused" />
    </vsm:VisualStateGroup>
</vsm:VisualStateManager.VisualStateGroups>

我的自定义控件需要另一个状态,MouseButtonUpMouseButtonDown可以用预定义的Pressed状态表示)。在这里,默认情况下,MouseButtonUp状态将被解释为MouseOver状态,但我希望MouseButtonUp状态的行为与状态不同MouseOver

如何添加这种MouseButtonUp视觉状态?(MouseButtonUp状态仅在用户释放鼠标之后和用户开始移动之前存在。

顺便说一句:我应该使用自定义控件还是用户控件?我一直对这两个感到非常困惑。似乎它们都可以在很多情况下工作。

非常感谢。

更新:一旦我们添加了这个MouseButtonUp状态,我就可以做如下的视觉转换:

<vsm:VisualTransition From="Pressed" To="MouseButtonUp" GeneratedDuration="0:0:5" />

或者:

<vsm:VisualTransition From="MouseButtonUp" To="MouseOver" GeneratedDuration="0:0:5" />
4

1 回答 1

2

下面的行在您的 xaml 中为您创建了一个 Visual-State。

    <vsm:VisualState x:Name="MouseButtonUp">
        ...Your code for animation
    </vsm:VisualState>

那不是全部。除非您强制执行控件进入此 Visual-State,否则它是无用的。好吧,你是怎么做到的?就是这样。

    VisualStateManager.GoToState(this, "MouseButtonUp", true);

上面的代码将执行您可能在 xaml 中的“MouseButtonUp”VisualState 定义中定义的任何动画。只要您觉得鼠标处于 MousebuttonUp 状态,就调用上面的代码语句。

于 2011-10-14T07:28:04.900 回答