コード例 #1
0
ファイル: ComponentDispatcher.cs プロジェクト: hughbe/wpf
        public static void RaiseIdle()
        {
            ComponentDispatcherThread data = ComponentDispatcher.CurrentThreadData;

            data.RaiseIdle();
        }
コード例 #2
0
ファイル: ComponentDispatcher.cs プロジェクト: hughbe/wpf
        public static bool RaiseThreadMessage(ref MSG msg)
        {
            ComponentDispatcherThread data = ComponentDispatcher.CurrentThreadData;

            return(data.RaiseThreadMessage(ref msg));
        }
コード例 #3
0
ファイル: ComponentDispatcher.cs プロジェクト: hughbe/wpf
        /// <summary>
        /// A component calls this to end being modal.
        ///</summary>
        internal static void CriticalPopModal()
        {
            ComponentDispatcherThread data = ComponentDispatcher.CurrentThreadData;

            data.PopModal();
        }