Group: Forum Members
Last Active: 7 Years Ago
Posts: 1,
Visits: 9
|
How can I apply a geometry transformation to an element?
Example, how can I do a rotation of 180 degrees to a NButton?
|
Group: Forum Members
Last Active: 5 hours ago
Posts: 3,054,
Visits: 4,009
|
Hi, To apply a transformation to a widget, you should embed in in an NTransformContent element. For example, to rotate a button to 180 degrees, you can use the following piece of code: NButton button = new NButton("Rotated Button"); NTransformContent transformContent = new NTransformContent(button); transformContent.Angle = new NAngle(180);
Best Regards, Nevron Support Team
|