Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WPFの場合:
<Button Width="24" Height="24" > <Image Source="pack://application:,,,/res/x.png" VerticalAlignment="Center"/> </Button>
これをC#で模倣するにはどうすればよいですか?Buttonクラスに子を追加するメソッドが見つかりません。
Button
ButtonContentコントロールであるため、プロパティを使用する必要がありButtons Contentます
Content
Buttons
例:
Button myButton = new Button { Width = 24, Height = 24, Content = new Image { Source = new BitmapImage(new Uri("image source")), VerticalAlignment = VerticalAlignment.Center } };