5
在WPF裏面:添加圖像的按鈕編程
<Button Width="24" Height="24" >
<Image Source="pack://application:,,,/res/x.png" VerticalAlignment="Center"/>
</Button>
我怎麼可以模仿這在C#?我找不到添加子項的Button
類中的任何方法。
在WPF裏面:添加圖像的按鈕編程
<Button Width="24" Height="24" >
<Image Source="pack://application:,,,/res/x.png" VerticalAlignment="Center"/>
</Button>
我怎麼可以模仿這在C#?我找不到添加子項的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
}
};
爲什麼不在XAML中添加圖像並將Source
綁定到視圖模型中的屬性?
http://stackoverflow.com/questions/4271277/programmatically-creating-image-button -in-WPF – 2013-03-26 00:20:36