我的 XAML 页面中有一个堆栈面板。
<StackPanel Name="xamlimg" Orientation="Vertical" Grid.column="1">
</StackPanel>
我想stackpanel
在 XAML 页面后面使用 C# 代码添加一个图像。
我尝试使用下面的结构,但似乎无法正确设置源。
Image img = new Image();
img.Source= //Image Source here
xamlimg.Children.Add(img);
如何设置图像源并将其添加到stackpanel
?