Aracılığıyla paylaş


Nasıl Yapılır: Bir UIElement'i Yatay Veya Dikey Çevirme

This example shows how to use a ScaleTransform to flip a UIElement horizontally or vertically. In this example, a Button control (a type of UIElement) is flipped by applying a ScaleTransform to its RenderTransform property.

Örnek

The following illustration shows the button to flip.

The UIElement to flip

Dönüştürmesi olmayan düğme

The following shows the code that creates the button.

<Button Content="Flip me!" Padding="5">
</Button>

To flip the button horizontally, create a ScaleTransform and set its ScaleX property to -1. Apply the ScaleTransform to the button's RenderTransform property.

<Button Content="Flip me!" Padding="5">
  <Button.RenderTransform>
    <ScaleTransform ScaleX="-1" />
  </Button.RenderTransform>
</Button>

The button after applying the ScaleTransform

Yatay olarak (0,0) kadar çevrilen düğme

As you can see from the previous illustration, the button was flipped, but it was also moved. That's because the button was flipped from its top left corner. To flip the button in place, you want to apply the ScaleTransform to its center, not its corner. An easy way to apply the ScaleTransform to the buttons center is to set the button's RenderTransformOrigin property to 0.5, 0.5.

<Button Content="Flip me!" Padding="5"
  RenderTransformOrigin="0.5,0.5">
  <Button.RenderTransform>
    <ScaleTransform ScaleX="-1" />
  </Button.RenderTransform>
</Button>

The button with a RenderTransformOrigin of 0.5, 0.5

Yatay olarak ortasından çevrilen düğme

To flip the button vertically, set the ScaleTransform object's ScaleY property instead of its ScaleX property.

<Button Content="Flip me!" Padding="5"
  RenderTransformOrigin="0.5,0.5">
  <Button.RenderTransform>
    <ScaleTransform ScaleY="-1" />
  </Button.RenderTransform>
</Button>

The vertically flipped button

Dikey olarak ortasından çevrilen düğme

Ayrıca bkz.

Kavramlar

Dönüşümlere Genel Bakış