.Net
● Greatis ● Security ● AppDatabase ● Utilities ● Delphi/CB ● Android ● just4fun
.Net Software
.Net Components for Visual Studio
Nostalgia .Net
Homepage
Documentation
Download
Order
Other software for developers
Form Designer .Net
Print Suite .Net
Gradient Controls .Net
iGrid Plotter
Life .Net

Delphi / C++ Builder

Follow us
LinkedIn Twitter Facebook
Share this page
Special offer!

Nostalgia .Net • Window Information

Find any window and any control on the system, analyze and change it


Window Information set contains two parts: SystemWindow class and WindowInformation component itself.

SystemWindow class implements convenient interface to system window, represented by window handle. SystemWindow class has tens properties that replace tens WinAPI calls and sending messages. Using SystemWindow you can get ans set any property of any window and control in your system. When you have window handle, just create SystemWindow class for this handle and edit this window with easy. For instance the following example makes some window stay-on-top:

  SystemWindow sw = new SystemWindow(YourWindowHandle);
  sw.StayOnTop = true;
That's all!

So, if we know handle, we can get and change tens paremeter of each window and control, including text, style, size, position and much more... OK, but how we can get the handle of window? Good question. And we have an answer - WindowInformation. This component allows to search any window and control in the system. All the found windows collected in Windows list. You can filter windows list when SearchWindows call as well as in WindowAdding event that occurs for each found window. The following example finds all the Notepad windows and change the caption of each found window:

  windowInformation1.SearchWindows(WindowKind.Window, "Notepad", null, true);
  foreach (SystemWindow sw in windowInformation1.Windows)
    sw.Text = sw.Text + " - Modified by SystemWindow";
Try to do the same with direct Win32 calls and feel the difference.

Demo project shows all the Window Information's features:

Window Information Demo


Download free trial version
Order Nostalgia .Net right now!


Greatis Software
eXTReMe Tracker