1

有什么方法可以将 VisualStateManager 与我的 ChildWindow 子类一起使用?对 VisualStateManager 的调用什么都不做,而我所做的谷歌搜索暗示实现这一点的唯一方法是手动调用 Storyboards。这太草率了,而且容易出错。有没有人找到实现它的方法?

更新了示例代码。要使用它,只需创建一个新的 Silverlight 项目,然后通过单击主页上的按钮调用 ExampleWindow.ShowWindow()。即使构造函数设置了应该隐藏按钮的状态,您也会看到该按钮。

XAML(ExampleWindow.xaml):

<controls:ChildWindow
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    xmlns:ic="clr-namespace:Microsoft.Expression.Interactivity.Core;assembly=Microsoft.Expression.Interactions"
    x:Class="Client.Windows.ExampleWindow"
    Title="Example">
    <Grid x:Name="LayoutRoot">
        <VisualStateManager.VisualStateGroups>
            <VisualStateGroup x:Name="ExampleStateGroup">
                <VisualState x:Name="ExampleBaseState">
                    <Storyboard>
                        <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Duration="00:00:00.0010000" Storyboard.TargetName="button" Storyboard.TargetProperty="(UIElement.Opacity)">
                            <EasingDoubleKeyFrame KeyTime="00:00:00" Value="0"/>
                        </DoubleAnimationUsingKeyFrames>
                    </Storyboard>
                </VisualState>
            </VisualStateGroup>
        </VisualStateManager.VisualStateGroups>
        <VisualStateManager.CustomVisualStateManager>
            <ic:ExtendedVisualStateManager/>
        </VisualStateManager.CustomVisualStateManager>
        <Button x:Name="button" Content="You Shouldn't See Me" Grid.ColumnSpan="2" Width="150" Height="150" HorizontalAlignment="Center" VerticalAlignment="Center"/>
    </Grid>
</controls:ChildWindow>

后面的代码(ExampleWindow.xaml.cs):

using System.Windows;
using System.Windows.Controls;

namespace Client.Windows
{
    public partial class ExampleWindow : ChildWindow
    {
        public ExampleWindow()
        {
            InitializeComponent();

            VisualStateManager.GoToState( this, "ExampleBaseState", true );
        }

        public static void ShowWindow()
        {
            var w = new ExampleWindow();
            w.Show();
        }
    }
}
4

4 回答 4

1

检查这篇文章Using Visual State Manager with Silverlight Toolkit's Child Windows control

于 2010-10-01T02:36:23.580 回答
0

到目前为止,我发现的唯一解决方法是将任何需要视觉状态的东西放入 UserControl。UserControl 可以具有状态,并在它们之间成功切换,并通过事件、方法和属性将任何必要的信息传递给 ChildWindow。

于 2010-01-25T16:29:50.873 回答
0

我遇到了 VSM 在 ChildWindows 中与 Dov 一样的问题。我所做的是将我的 ChildWindow 更改为 UserControl,然后将 UserControl 设置为通用 ChildWindow 的内容,然后再打开它。

var childWindow = new ChildWindow { Content = someUserControl };

现在的问题是您失去了 ChildWindow 类的 DialogResult 功能,因为您的代码隐藏在 UserControl 中。访问 ChildWindow 的 DialogResult 属性的最简单方法是使用 UserControl 内的 Parent 属性。

于 2010-02-24T08:24:43.993 回答
0

ChildWindow 模板包含一个 VisualStateManager,它管理通用子窗口动画的 VisualStateGroup“CommonStates”。当您调用 VisualStateManager.GoToState 时,它​​正在 ChildWindow 模板 CommonStates VisualStateGroup 中查找状态。因此,您需要访问您在 ChildWindow 中创建的 ExtendedVisualStateManager 和 VisualStateGroup“ExampleStateGroup”。我发现这样做的唯一方法(这在某种程度上是一种变通方法)是创建自己的 GoToState 函数,该函数被调用以进行状态更改。

public ExampleWindow()
{
    InitializeComponent();

    MyGoToState("ExampleBaseState");
}

public void MyGoToState(string stateIn)
{

    VisualState stateShow = null;

    VisualStateGroup ExampleStateGroup as VisualStateGroup  

    if(ExampleStateGroup != null)
    {
        for(int i= 0; i < ExampleStateGroup.States.Count; i++)
        {
            stateShow = ExampleStateGroup.States[i] as VisualState;

            if(stateShow != null)
            {

                if(stateShow.Name == stateIn.Trim())
                {
                    stateShow.Storyboard.Begin();
                }

            }

         }
    }
}
于 2014-06-22T18:26:22.093 回答