Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Code xác định ứng dụng đang tương tác ( Window is currently activated)

8 năm trước 726 lượt xem 7 bình luận 8 năm trước

[DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
        private static extern IntPtr GetForegroundWindow();

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern int GetWindowThreadProcessId(IntPtr handle, out int processId);

        public static bool ApplicationIsActivated()
        {
            var activatedHandle = GetForegroundWindow();
            if (activatedHandle == IntPtr.Zero)
            {
                return false;       // No window is currently activated
            }

            var procId = Process.GetCurrentProcess().Id;
            int activeProcId;
            GetWindowThreadProcessId(activatedHandle, out activeProcId);

            return activeProcId == procId;
        }

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
nguyendinhsen đã bình luận 8 năm trước

Code em lụm trên stackoverflow chủ yếu giải quyết vấn đề sau:
VD: em mở 2 file Autocad thì em cần xác định là mình đang làm việc với file đang chạy tool có phải đang là  file đang tương tác trực tiếp ko. Thử mấy cái thì thấy hàm này dễ dùng

K9 SuperAdmin, KquizAdmin, KquizAuthor đã bình luận 8 năm trước

bạn có thể giải thích cụ thể code này hoạt động ra sao hem bạn

Câu hỏi mới nhất