Inheritance: IIdleDispatchedHandlerArgs
Esempio n. 1
0
        public CoreDispatcher()
        {
            _highSyncCtx   = new CoreDispatcherSynchronizationContext(this, CoreDispatcherPriority.High);
            _normalSyncCtx = new CoreDispatcherSynchronizationContext(this, CoreDispatcherPriority.Normal);
            _lowSyncCtx    = new CoreDispatcherSynchronizationContext(this, CoreDispatcherPriority.Low);
            _idleSyncCtx   = new CoreDispatcherSynchronizationContext(this, CoreDispatcherPriority.Idle);

            _idleDispatchedHandlerArgs = new IdleDispatchedHandlerArgs(() => IsQueueIdle);

            Initialize();
        }
Esempio n. 2
0
        public CoreDispatcher()
        {
            _idleDispatchedHandlerArgs = new IdleDispatchedHandlerArgs(() => IsQueueIdle);

            Initialize();
        }
Esempio n. 3
0
 public void RenderComplete( IdleDispatchedHandlerArgs e )
 {
     RenderMask.State = ControlState.Foreatii;
 }