What is the replacement for DataTrigger in Silverlight

前端 未结 4 1293
南笙
南笙 2020-12-03 05:26

This is my scenario.

I have 2 Properties. Type and State.

Type is an Enum with 3 values eg, ball, car, arrow. State is an int which would accept 3 state valu

相关标签:
4条回答
  • 2020-12-03 05:48

    To expand on Mike Post's post here's the XAML in case you don't have Blend.

    You need to add references to Microsoft.Expression.Interactions and System.Windows.Interactivity.

    xmlns:ia="clr-namespace:Microsoft.Expression.Interactivity.Core;assembly=Microsoft.Expression.Interactions" 
    xmlns:iv="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" 
    

    Then in your control, at the same level as the VisualStateManager put this:

    <iv:Interaction.Triggers>
        <ia:DataTrigger Binding="{Binding PropertyName}" Value="PropertyValue"  >
            <ia:GoToStateAction StateName="StateName" />
        </ia:DataTrigger>
    </iv:Interaction.Triggers>
    
    0 讨论(0)
  • 2020-12-03 05:51

    The blog post "Expression SDK in Silverlight–DataTrigger Example" covers it pretty well. Here is a sample of what he does:

    <i:Interaction.Triggers>
        <ia:DataTrigger Binding="{Binding IsEnabled}" Comparison="Equal" Value="false">
            <ia:ControlStoryboardAction Storyboard="{StaticResource DisableStoryboard}"></ia:ControlStoryboardAction>
        </ia:DataTrigger>
    
        <ia:DataTrigger Binding="{Binding IsEnabled}" Comparison="Equal" Value="true">
            <ia:ControlStoryboardAction Storyboard="{StaticResource EnableStoryboard}"></ia:ControlStoryboardAction>
        </ia:DataTrigger>
    </i:Interaction.Triggers>
    

    (With the two XML namespace prefixes i and ia being defined as follows:)

    xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
    xmlns:ia="http://schemas.microsoft.com/expression/2010/interactions"
    
    0 讨论(0)
  • 2020-12-03 05:54

    I'd just use a converter that takes your object with 2 properties and returns an image. Code like that in pure XAML is painful and really belongs in C#.

    0 讨论(0)
  • 2020-12-03 06:07

    I'd use GoToState behaviors with DataTriggers in Silverlight. Pretty simple in Blend:

    Put all of your logic for what drives you to a different state in your view model. Expose the state as an enum. Open the States tab. Create a new state group (if you don't already have one). Create your states. From the Assets tab, select Behaviors. Drag the GoToState behavior from the Assets tab and drop it on your root visual element. In the Properties panel, click the "New" button next to the TriggerType and select DataTrigger. Remember that enum on your view model? Set the Trigger Binding to the state enum on the view model. Set the Trigger Value to the value of the enum. Set the StateName to the target state.

    Blend should now have generated all of the VSM XAML for you. Once you get the hang of things you'll see how in some scenarios you don't even need the enum on the view model -- you'll be able to drive the state entirely off of the view.

    0 讨论(0)
提交回复
热议问题