約在代碼中設置保證金對方回答是100%正確的。 因此,這意味着探索框架爲這種「圖片庫」提供的可能性。
安排圖片編程 - 你可以使用一個Canvas
:只要你想要的圖片重疊,你可以很容易地通過Canvas.SetZIndex(image,42)
控制哪一個是在頂部設置了Z指數(在Grid
var image = new Image {
Source = new BitmapImage(new Uri("wall.png", UriKind.Relative)),
Height = 120,
Width = 120
};
Canvas.SetLeft(image, 20);
Canvas.Children.Add(image);
你將需要重新排列子訂單,這更麻煩)。
<ItemsControl ItemsSource="{Binding Path=WebServiceResult.Images}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate><WrapPanel/></ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<Image Source="{Binding Path=SourceUri}" Height="120" Width="120" Margin="20,0,0,0"/>
</ItemsControl.ItemTemplate>
</ItemsControl>
:外的現成或定製 - 通過
ItemsControl
排號圖片