Esempio n. 1
0
        public static void RaiseIdle()
        {
            ComponentDispatcherThread data = ComponentDispatcher.CurrentThreadData;

            data.RaiseIdle();
        }
Esempio n. 2
0
        public static bool RaiseThreadMessage(ref MSG msg)
        {
            ComponentDispatcherThread data = ComponentDispatcher.CurrentThreadData;

            return(data.RaiseThreadMessage(ref msg));
        }
Esempio n. 3
0
        /// <summary>
        /// A component calls this to end being modal.
        ///</summary>
        internal static void CriticalPopModal()
        {
            ComponentDispatcherThread data = ComponentDispatcher.CurrentThreadData;

            data.PopModal();
        }