For WPF there is the ContentRendered event in the Window class which let us know when the visual elements have been rendered.
ContentRendered
Window
Is there anyt
This worked well for me before in similar scenarios:
... await Dispatcher.RunAsync(CoreDispatcherPriority.Low, DoYourThing); ... private void DoYourThing() { }