0

実際に画像ソースをボタンの画像にバインドしようとしていますが、何が問題なのかわかりませんが、何も表示されません...

これは私のxamlです

<Grid>
    <Grid x:Name="FakeGridBig" Background="White" Opacity="0.1" 
        HorizontalAlignment="Left" Width="714" Height="269" Margin="3,0,0,0"></Grid>
    <Button  x:Name="Featured_Big" MouseEnter="Featured_Big_MouseEnter_1"
        MouseLeave="Featured_Big_MouseLeave"
        ContentTemplate="{StaticResource FeaturedBig}" 
        Style="{StaticResource BlackOpacityButton}" 
        BorderThickness="0" VerticalAlignment="Top" Margin="0,0,11,0">
        <i:Interaction.Triggers>
            <i:EventTrigger EventName="Click" >
                <gs:EventToCommand Command="{Binding FeaturedBigImage.InnerCommand1}"/>
            </i:EventTrigger>
        </i:Interaction.Triggers>      
        <Image x:Name="bigimage" Height="269" Width="714" ></Image>
    </Button>                       
</Grid>

そしてこれがコードビハインドで、実はウリがいい…

Uri uri = new Uri(FeaturedSmallImage1.Image1,UriKind.Absolute);
BitmapImage bmp = new BitmapImage(uri);
View.bigimage.Source = bmp;
4

1 に答える 1

2

私はあなたがおそらくこの行にあると思います...

ContentTemplate="{StaticResource FeaturedBig}" 

そのテンプレートがどのように見えるかに応じて、使用しようとしている画像を上書きする可能性があります。

于 2012-05-10T17:29:15.103 に答える