//Modify an element's Y position.
//Perform on the worker thread
await QueuedTask.Run(() =>
{
double elmY = element.GetY();
elmY = 5.5;
element.SetY(elmY); //You don't have to get to set; a shortcut would be: element.SetY(5.5);
});
Requirements
Target Platforms: Windows 11, Windows 10, Windows 8.1