How to get Icon of Current Active Window in C Sharp?

222 Views Asked by At

As we can get the title of active window in c sharp using method ActiveWindowTitle(). Now I need to get The icon of above same window. how can I do that?

2

There are 2 best solutions below

0
On

If you find a foreground window

GetForegroundWindow(

you can find out its process ID

GetWindowThreadProcessId(

and for that process, the file path

process.MainModule;

then just use the function

Icon ico = Icon.ExtractAssociatedIcon (executablPath);

See for example: this

0
On

Maybe you can use this. icon.

enter image description here