I have a canvas with RenderTransform that applies like this:
<Canvas RenderTransform="0.1,0,0,-0.1,0,913">
Can someone tell me what these meanings mean? It seems I canβt find which converter is used to analyze these values.
Since RenderTransform is a Transform , it probably uses a TransformConverter , which probably creates a MatrixTransform ; from his documentation:
RenderTransform
Transform
TransformConverter
MatrixTransform
<object property="m11, m12, m21, m22, offsetX, offsetY"/>
I unreasonably went ahead and checked the code, the converter calls Transform.Parse :
Transform.Parse
Creates a new Transform from the specified string representation of the transformation matrix.For more information, see Using the XAML Attribute on the MatrixTransform Class Page .
Creates a new Transform from the specified string representation of the transformation matrix.
For more information, see Using the XAML Attribute on the MatrixTransform Class Page .
Source: https://habr.com/ru/post/1433471/More articles:SQL Group By - generate multiple aggregate columns from a single column - sql-serverEmpty source file after crash in Visual Studio? - c #multiple lines in the form for the same object in symfony2 - phpUpdating multiple fields based on multiple criteria in a single query - sql-updateWhy can't I install JAVA_HOME VARIABLE on Ubuntu 12.04? - javaJSF page does not extract variable from CDI bean - java-eePlay sound during installation Inno Setup - inno-setupgdb macro to determine the architecture of a debugged program - gdbHighlight selection using jQuery Richfaces - jqueryHow to make case sensitive string in Python? - pythonAll Articles