xaml - Set CentreX and CentreY properties of CompositeTranform in WPF -


centrex , centrey refer transformgroup in wpf - skewtransform/scaletransform/rotatetransform ??

this original composite statement :

<compositetransform centery="0.434" centerx="0.499" scaley="1.14" translatey="-0.093"/> 

i have transformed in wpf :

<transformgroup>      <scaletransform scaley="1.14" />      <rotatetransform />      <translatetransform y="-0.093" />      <skewtransform />                                             </transformgroup> 

i not sure transform should set centrex , centrey properties.


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -