在Window Application(WPF)中更改图像

时间:2016-08-05 15:12:32

标签: c# wpf xaml

目标:单击红色按钮时将图像更改为另一个图像。 但是在将初始熊猫图像更改为动画角色图像时存在问题。 熊猫图像在mainpage.xaml中设置。

git pull --rebase

单击按钮时会设置角色图像 这是“mainpage.xaml.cs”代码

<Page
x:Class="App3.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App3"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <Button Height="100" Width="100" Click="Button_Click" Background="#FFEA2323"/>
    <Image x:Name="image" Source="Images/panda1.png"  Margin="436,170,418,174"/>

</Grid>
</Page>

但它没有成功。如果我单击按钮,初始熊猫图像会消失,并且没有图像打开。只是黑色。我在这段代码中遗漏了什么?

Before click the red button After click the red button

0 个答案:

没有答案