I have a GameWindow
consisting some animations in OpentTK
, which I want to show in projector screen. Is the DisplayDevice class helpful for this case?
using OpenTK;
foreach (DisplayDevice device in DisplayDevice.AvailableDisplays)
{
Console.WriteLine(device.IsPrimary);
Console.WriteLine(device.Bounds);
Console.WriteLine(device.RefreshRate);
Console.WriteLine(device.BitsPerPixel);
foreach(DisplayResolution res in device.AvailableResolutions)
{
Console.WriteLine(res);
}
}
Please suggest me a way to show it in projector screen.