2012-06-01 55 views
0

我應該使用哪種WinAPI函數在選定的窗口上繪製邊框。例如,我通過鼠標(例如,記事本)使任何窗口處於活動狀態,並且應該用邊框框住。如何使用.net實現它?使用.net繪製一個選定窗口的邊框

回答

0

使用鼠標位於邊框MouseHover上的函數,該函數在該函數內根據需要定義或繪製邊框。

//write an function like this 
function() 
{ 
    // do what you want some like this... or draw border 
    selectedwindow.BorderStyle = BorderStyle.Fixed3D; 

} 

//then call it on MouseHover event. 
+0

不幸的是,如果我想通過邊框將任何自定義窗口框起來,例如notepad.exe,則此方法並不合適。 – eternity

+0

notepad.exe是什麼意思?你想從其他應用程序更改另一個應用程序邊框嗎? –

+0

是的,你是對的。 – eternity