c# – 以编程方式在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
    }
};
原文链接:https://www.f2er.com/csharp/98253.html

猜你在找的C#相关文章