DisplayQueue
(Created page with "DisplayQueue is part of the coding framework for MDriven Framework. It implements the databinding updates async to avoid thrashing the UI with updates that may be passing stat...")
 
No edit summary
Line 5: Line 5:
For WPF call this early in your application :
For WPF call this early in your application :
  WPFDequeuer.Active = true;
  WPFDequeuer.Active = true;
[[Category:MDriven Framework]]

Revision as of 08:47, 2 December 2022

This page was created by Hans.karlsen@mdriven.net on 2018-02-05. Last edited by Edgar on 2025-01-20.

DisplayQueue is part of the coding framework for MDriven Framework. It implements the databinding updates async to avoid thrashing the UI with updates that may be passing states - like if you would loop this command x:=x+1 - we do not want to force UI updates for each loop.

DisplayQueue polling is different on different UI-implementations.

For WPF call this early in your application :

WPFDequeuer.Active = true;