зеркало из https://github.com/stride3d/opentk.git
Use new DisplayDevice.GetDisplay() interface instead of obsolete AvailableDisplays.
This commit is contained in:
Родитель
e838aa7953
Коммит
7569345e0a
|
@ -18,7 +18,10 @@ namespace Examples.Tests
|
|||
{
|
||||
public static void Main()
|
||||
{
|
||||
foreach (DisplayDevice dev in DisplayDevice.AvailableDisplays)
|
||||
for (int i = 0; i < 6; i++)
|
||||
{
|
||||
DisplayDevice dev = DisplayDevice.GetDisplay(DisplayIndex.First + i);
|
||||
if (dev != null)
|
||||
{
|
||||
Trace.WriteLine(dev.ToString());
|
||||
MessageBox.Show(dev.ToString());
|
||||
|
@ -32,3 +35,4 @@ namespace Examples.Tests
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче