MultiScaleImage呈现在标题窗格的顶部

时间:2012-04-23 17:31:14

标签: c# silverlight windows-phone-7 xaml multiscaleimage

我的程序在wp7.5上的ScrollViewer中使用MultiScaleImage以及其他内容。我遇到的问题是当我尝试滚动时,图像呈现在标题窗格的顶部而不是“在”下面,而所有其他内容都在标题窗格下呈现(由标题窗格切断,正确的行为)

有谁知道这是一个已知问题,还是我做错了什么?

xaml中的

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
    <ScrollViewer>
        <StackPanel>
            <Button>LOL</Button>
            <Grid x:Name="RootGrid" Width="420" Height="374">
                <MultiScaleImage x:Name="MSI"></MultiScaleImage>
            </Grid>
            <Button>LOL</Button>
            <Button>LOL</Button>
            <Button>LOL</Button>
            <Button>LOL</Button>
            <Button>LOL</Button>
            <Button>LOL</Button>
            <Button>LOL</Button>
        </StackPanel>
    </ScrollViewer>
</Grid>
代码背后的代码:

public partial class MainPage : PhoneApplicationPage
{
    public MainPage()
    {
        InitializeComponent();
        this.Loaded += new System.Windows.RoutedEventHandler(MainPage_Loaded);
    }

    void MainPage_Loaded(object sender, System.Windows.RoutedEventArgs e)
    {
        this.MSI.Source = new TileSource();
    }
}

public class TileSource : MultiScaleTileSource
{
    public TileSource() :
        base(256, 256, 256, 256, 0)
    {
    }

    protected override void GetTileLayers(int tileLevel, int tilePositionX, int tilePositionY, System.Collections.Generic.IList<object> tileImageLayerSources)
    {
        tileImageLayerSources.Add(new System.Uri(@"someurl"));
    }
}

将其他所有东西的Z顺序设置为非常高的值以及纯色背景似乎都有效,但这在我当前的项目中是不可行的,因为我们使用的是带有图像作为背景的视图,具有实体颜色标题窗格将掩盖背景。

感谢您的帮助!

0 个答案:

没有答案