This panel layouts out its children with a random location and size.
A RandomPanel example. The random size of child is contrained within the MinimumHeight,
MaximumHeight, MinimumWidth, and MaximumWidth values.
<Page x:Class="RandomPanelSample.Sample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:blendables="http://schemas.xceed.com/wpf/xaml/blendables"
Title="RandomPanelSample">
<Grid>
<blendables:RandomPanel MinimumHeight="80" MaximumHeight="300" MaximumWidth="400" MinimumWidth="80">
<Rectangle Fill="Green"/>
<Rectangle Fill="Red"/>
<Rectangle Fill="Blue"/>
<Rectangle Fill="Orange"/>
<Rectangle Fill="Yellow"/>
</blendables:RandomPanel>
</Grid>
</Page>
Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2