在
WPF中:
<Button Width="24" Height="24" > <Image Source="pack://application:,/res/x.png" VerticalAlignment="Center"/> </Button>
解决方法
Button是一个Content控件,因此您只需使用Buttons Content属性
例:
Button myButton = new Button { Width = 24,Height = 24,Content = new Image { Source = new BitmapImage(new Uri("image source")),VerticalAlignment = VerticalAlignment.Center } };