在Silverlight中滑动弹出窗口

时间:2011-08-24 05:01:58

标签: silverlight-4.0 popup expression-blend sliding

当用户将鼠标悬停在某个控件上时,我有一个要求在Silverlight 4.0中实现弹出窗口。弹出窗口应从控件中滑出。我可以显示一个弹出窗口。但不能给它带来滑动效果。请帮帮我。

提前致谢。

1 个答案:

答案 0 :(得分:0)

我一直在使用带阴影的矩形滑动类型“弹出窗口”。如果需要模态类型,可以禁用背景。

这是使用纯xaml,但故事板可以从代码隐藏调用。

参考互动

   xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
 xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions" x:Class="SomeProject"

我正在使用导航页面,因此我的滑入和换出过渡的代码如下所示。

 <navigation:Page.Resources>
        <Storyboard x:Name="Storyboard_Enter">
            <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateX)" Storyboard.TargetName="rectangle">
                <EasingDoubleKeyFrame KeyTime="0" Value="0"/>
                <EasingDoubleKeyFrame KeyTime="0:0:2" Value="520"/>
            </DoubleAnimationUsingKeyFrames>
        </Storyboard>
        <Storyboard x:Name="Storyboard_GoBack">
            <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateX)" Storyboard.TargetName="rectangle">
                <SplineDoubleKeyFrame KeyTime="0" Value="520"/>
                <SplineDoubleKeyFrame KeyTime="0:0:2" Value="0"/>
            </DoubleAnimationUsingKeyFrames>
        </Storyboard>
    </navigation:Page.Resources>

LayoutRoot

 <Grid x:Name="LayoutRoot">
        <Button x:Name="btnEnter" Content="Enter" HorizontalAlignment="Left" Height="48" Margin="96,88,0,0" VerticalAlignment="Top" Width="144">
            <i:Interaction.Triggers>
                <i:EventTrigger EventName="MouseEnter" SourceName="btnEnter">
                    <ei:ControlStoryboardAction Storyboard="{StaticResource Storyboard_Enter}"/>
                </i:EventTrigger>
            </i:Interaction.Triggers>
        </Button>
        <Rectangle x:Name="rectangle" Fill="#FF393939" Margin="-376,232,0,72" Stroke="Black" RadiusY="25" RadiusX="21" HorizontalAlignment="Left" Width="358" RenderTransformOrigin="0.5,0.5">
            <Rectangle.RenderTransform>
                <CompositeTransform/>
            </Rectangle.RenderTransform>
            <Rectangle.Effect>
                <DropShadowEffect BlurRadius="15" Color="#FFBABABA"/>
            </Rectangle.Effect>
        </Rectangle>
        <Button x:Name="btnGoBack" Content="Exit" Height="48" Margin="296,88,192,0" VerticalAlignment="Top">
            <i:Interaction.Triggers>
                <i:EventTrigger EventName="MouseEnter" SourceName="btnGoBack">
                    <ei:ControlStoryboardAction Storyboard="{StaticResource Storyboard_GoBack}"/>
                </i:EventTrigger>
            </i:Interaction.Triggers>
        </Button>

    </Grid>

这是一个非常粗略的例子,但应该让你开始。

我们将“popup”容器放在主画布边缘的视线外。

创建故事板以将其滑入并向后滑动。

可以使用基于xaml的触发器或代码隐藏来调用故事板。