Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is CompositeTransform used only in silverlight?

CompositeTransform is only used for silverlight?. Is there anyway we can use that in WPF or any equivalent replacement?

like image 714
Kishore Kumar Avatar asked Mar 05 '11 04:03

Kishore Kumar


1 Answers

There is no CompositeTransform in WPF however there is a TransformGroup. Hence an equivalent replacement is a TransformGroup containing ScaleTransform, SkewTransform, RotateTransform and TranslateTransform in that order.

like image 183
AnthonyWJones Avatar answered Oct 30 '22 22:10

AnthonyWJones