I want to use multi monitors. Like when application started , I will see all monitors and click one of them ,then application will start the monitor that I selected. How can I do this?
CodePudding user response:
Call EnumDisplayDevices
to enumerate display adapters and monitors. Call ChangeDisplaySettings
to move and/or turn monitors on/off.
Call MonitorFromPoint
and GetMonitorInfo
to find the work area for application windows.