Viewbox
<!-- Ellipse will occupy 50x50px space -->
<Ellipse Width="50" Height="50" Fill="CornflowerBlue" />
<!-- Ellipse will be scaled to occupy 300x300px space -->
<Viewbox Stretch="Uniform" Width="300" Height="300">
<Ellipse Width="50" Height="50" Fill="CornflowerBlue" />
</Viewbox>// Ellipse will occupy 50x50px space
new Ellipse
{
Width = 50,
Height = 50,
Fill = Brushes.CornflowerBlue
};
// Ellipse will be scaled to occupy 300x300px space
new Viewbox
{
Stretch = Stretch.Uniform,
Width = 300,
Height = 300,
Child = new Ellipse
{
Width = 50,
Height = 50,
Fill = Brushes.CornflowerBlue
}
};Common Properties
Property
Type
Default
Description
Examples
Pseudoclasses
Reference
Source code
最后更新于





