Hello,
var screens = Configuration.Instance.GetItemsByKind(Kind.Screen);
var windows = Configuration.Instance.GetItemsByKind(Kind.Window);
How do I find out which window belongs to which screen?
The goal is to be able to MultiWindowCommand.CloseSelectedWindow the windows belonging to screen X (instead of closing all windows and reopening them all like I have to do at the moment).