programming-examples/c-sharp/Others/ScrollViewer and Big Ellipse.cs

11 lines
360 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
ScrollViewer and Big Ellipse
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
HorizontalAlignment="Center" VerticalAlignment="Center">
<ScrollViewer HorizontalScrollBarVisibility="Auto">
<Ellipse Fill="Red" Height="800" Width="1200" />
</ScrollViewer>
</Page>