Buttons in the corners?
- by Rick Ratayczak
I'd like to have 4 buttons one in each corner of a window. But I want the stuff in the grid/window to be "behind" the buttons, as if they float on top. In html you would use the zOrder and absolute positioning.
<Grid x:Name="ButtonRoot">
<Button Name="bTopLeft" VerticalAlignment="Top" HorizontalAlignment="Left" />
<Button Name="bTopRight" VerticalAlignment="Top" HorizontalAlignment="Right" />
<Button Name="bBottomLeft" VerticalAlignment="Bottom" HorizontalAlignment="Left" />
<Button Name="bBottomRight" VerticalAlignment="Bottom" HorizontalAlignment="Right" />
<!-- Other junk here -->
</Grid>
The problem is, the buttons will not be "over" things, as the things will "wrap" around the buttons. How do I achieve this effect?