4

谁能给我一些建议,告诉我如何在 Silverlight 中实现一个控件,该控件显示图像缩略图,当鼠标悬停在上面时,将其放大到更大的尺寸?

4

3 回答 3

2

我为按钮做了类似的事情。这是代码 - 我相信您可以轻松地将其调整为使用图像。请注意,我从未真正发布过此代码;这只是我学习 Silverlight 时的一个实验。不要把它作为最佳实践的例子。

XAML:

<UserControl x:Class="GrowingButton.Page"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Width="400" Height="300">
    <Grid x:Name="LayoutRoot" Background="White">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>

        <Grid.Resources>
            <Storyboard x:Name="growStoryboard">
                <DoubleAnimation
                    Storyboard.TargetProperty="Width"
                    Storyboard.TargetName="testButton"
                    Duration="0:0:0.1"
                    By="20">
                </DoubleAnimation>
                <DoubleAnimation
                    Storyboard.TargetProperty="Height"
                    Storyboard.TargetName="testButton"
                    Duration="0:0:1"
                    By="-20">
                </DoubleAnimation>
            </Storyboard>
            <Storyboard x:Name="shrinkStoryboard">
                <DoubleAnimation
                    Storyboard.TargetProperty="Width"
                    Storyboard.TargetName="testButton"
                    Duration="0:0:1"
                    By="-20">
                </DoubleAnimation>
                <DoubleAnimation
                    Storyboard.TargetProperty="Height"
                    Storyboard.TargetName="testButton"
                    Duration="0:0:0.1"
                    By="20">
                </DoubleAnimation>
            </Storyboard>
        </Grid.Resources>
        <Button x:Name="testButton" Content="Test" Grid.Column="1" MouseEnter="Button_MouseEnter" MouseLeave="Button_MouseLeave" VerticalAlignment="Center" HorizontalAlignment="Center" Width="50" Height="50">
        </Button>
    </Grid>
</UserControl>

代码:

public partial class Page : UserControl
{
    public Page()
    {
        InitializeComponent();
    }

    private void Button_MouseEnter(object sender, MouseEventArgs e)
    {
        this.shrinkStoryboard.SkipToFill();
        this.growStoryboard.Begin();
    }

    private void Button_MouseLeave(object sender, MouseEventArgs e)
    {
        this.growStoryboard.SkipToFill();
        this.shrinkStoryboard.Begin();
    }
}
于 2009-09-10T14:05:46.783 回答
1

只要您的控件具有用于 MouseOver 状态的 VisualState,您就可以使用DoubleAnimation(或DoubleAnimationUsingKeyframes)对控件执行ScaleTransform

为您的缩略图/图像控件创建不同的 VisualStates(在 VisualStateGroup 内)将省去在后面的代码中连接事件的麻烦。您还可以在 Blend 中直观地定义不同的缩放比例,这是一个不错的功能。

于 2009-09-10T14:05:22.347 回答
0

此页面 -鱼眼菜单有一个示例,可以执行与您想要的类似的操作。出于某种原因,尽管我安装了 Silverlight,但它没有显示 Silverlight 版本。这可能与它在 Silverlight 2 中有关。

于 2009-09-11T09:43:42.203 回答