问题:
xaml代码:
<Button Height="30" Width="30" Grid.Column="2" Grid.Row="0" Name="Quit"
HorizontalAlignment="Right" Margin="2" Click="Quit_Click"
Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
<Button.Content>
<Image Stretch="Fill" Source="/Resources/close.png"/>
</Button.Content>
</Button>
xaml.cs代码:
private void Quit_Click(object sender, RoutedEventArgs e)
{
Application.Current.Shutdown();
}
运行界面这里上传不了图片,反正就是一片空白,连button里面的Image都没有显示,点击后也不进入Quit_Click
回答1:
应该是style的问题,能展示一下吗?去掉你写的style,整个程序就正常了,不知道你style设置了些什么