Applying Transforms

All FrameworkElements have two properties of type Transform that can be used to apply
such transforms:
  • LayoutTransform, which is applied before the element is laid out
  • RenderTransform (inherited from UIElement), which is applied after the layout process has finished (immediately before the element is rendered)

There are the five built-in 2D transforms, all in the System.Windows.Media namespace:
  • RotateTransform
  • ScaleTransform
  • SkewTransform
  • TranslateTransform
  • MatrixTransform

댓글

이 블로그의 인기 게시물

Stop console process using Ctrl+C.