Manipulate Windows Forms?

Bluscream

Retired Staff
Contributor
May 8, 2015
967
934
211
I searched a while now but I came to no acceptable results. I'm searching for a way to manipulate forms of windows applications. Like removing/hiding elements for example.

Something like
PHP:
System.Diagnostics.getProcessByName("Teamviewer.exe").getWindowByClassName("TaskHostWindow").pictureBox1.hide();

I wonder if it's possible and if yes, is it kind of framework restricted? (Only .NET)
 
Last edited by a moderator:

ehthe

Retired Staff
Contributor
Apr 26, 2015
1,028
896
216
Usually it's get a pointer to the parent object (QApplication or window for example) and go from there.
 
Top