0

定義済みの VisualStates を使用して ControlTemplate を作成したいと考えています。GoToStateActions と DataTriggers でそれらを使用したいと考えています。

ここで何がうまくいかないのか正確にはわかりません。私には、バインディングがそのように確立されていないように思えます。

namespace ControlTemplateVisualState
{
    using System.Windows.Controls;


    public class MyControl : ContentControl
    {
        public MyControl()
        {
            this.DefaultStyleKey = typeof(MyControl);
        }
    }
}
<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:ControlTemplateVisualState="clr-namespace:ControlTemplateVisualState" 
    xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
    xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions">

    <ControlTemplate x:Key="MyControlTemplate" TargetType="{x:Type ControlTemplateVisualState:MyControl}">
        <Grid x:Name="grid" Background="Red">
            <VisualStateManager.VisualStateGroups>
                <VisualStateGroup x:Name="VisualStateGroup">
                    <VisualState x:Name="IsDisabledState">
                        <Storyboard>
                            <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Panel.Background).(SolidColorBrush.Color)" Storyboard.TargetName="grid">
                                <EasingColorKeyFrame KeyTime="0" Value="#FF2BFF00"/>
                            </ColorAnimationUsingKeyFrames>
                        </Storyboard>
                    </VisualState>
                </VisualStateGroup>
            </VisualStateManager.VisualStateGroups>
            <i:Interaction.Triggers>
                <ei:DataTrigger Binding="{Binding IsEnabled, ElementName=grid}" Value="False">
                    <ei:GoToStateAction StateName="IsDisabledState"/>
                </ei:DataTrigger>
            </i:Interaction.Triggers>
        </Grid>
    </ControlTemplate>

    <Style TargetType="{x:Type ControlTemplateVisualState:MyControl}">
        <Setter Property="Background" Value="#FF0010FF"/>
        <Setter Property="Template" Value="{StaticResource MyControlTemplate}"/>
    </Style>
</ResourceDictionary>


<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="ControlTemplateVisualState.MainWindow"
    x:Name="Window"
    xmlns:local="clr-namespace:ControlTemplateVisualState"
    Title="MainWindow"
    Width="640" Height="480">

    <Grid x:Name="LayoutRoot">
        <local:MyControl IsEnabled="False"/>
    </Grid>
</Window>
4

2 に答える 2

1

あなたはこれを試してみることができます:

<i:Interaction.Behaviors>
      <si:DataStateBehavior Binding='{Binding IsLoggedIn}' Value='True' 
            TrueState='LoggedInState' FalseState='LoggedOutState'/>
</i:Interaction.Behaviors>

少し異なりますが、Silverlightでも機能します。http://expressionblend.codeplex.com/wikipage?title = Behaviors%20and%20Effects&referringTitle=Documentationを参照してください。

WPF4を使用する場合は、必ず修正バージョンを入手してください:http: //expressionblend.codeplex.com/workitem/8148

于 2011-06-02T23:37:46.730 に答える
0

Blend SDKのトリガーと動作は、コントロールテンプレートでは使用できないと思います。UserControlsでのみ使用できます。XAMLの解析時にトリガーをアタッチできる具体的なオブジェクトはありません。(この説明を100%確信しているわけではありませんが、複数のコントロールテンプレートがある場合、それらすべてにBlendビヘイビアーを配置できないことは知っています。)VSMを呼び出すにはコードビハインドが必要です。カスタムコントロールがどのように機能するか。SilverlightToolkitの次のコードのようなものを使用します。

public static void GoToState(Control control, bool useTransitions, params string[] stateNames)
{
    foreach (var name in stateNames)
    {
        if (VisualStateManager.GoToState(control, name, useTransitions))
            break;
    }
}
于 2011-06-02T22:43:13.193 に答える