Manipulate Windows Forms?

Bluscream

Retired Staff
Contributor
Joined
May 8, 2015
Messages
967
Reaction score
934
Points
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
Joined
Apr 26, 2015
Messages
1,029
Reaction score
896
Points
216
Usually it's get a pointer to the parent object (QApplication or window for example) and go from there.
 

Bluscream

Retired Staff
Contributor
Joined
May 8, 2015
Messages
967
Reaction score
934
Points
211
Thanks for the tip!
 
Top