Opentk/Source/Examples/OpenGL/Basic/QueryDisplayModes/DisplayModesForm.cs
the_fiddler e220f3a71a Updated Build.exe to correctly generate sharpdev and sharpdev2 projects.
Removed some unused variables.
Added licensing information.
2007-08-10 09:27:13 +00:00

39 lines
825 B
C#

#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using OpenTK;
using OpenTK.Platform;
namespace Examples.Windowing
{
public partial class W01_DisplayModesForm : Form
{
OpenTK.Platform.IGLControl glWindow;
public W01_DisplayModesForm()
{
InitializeComponent();
glWindow = new GLControl();
IEnumerable<DisplayMode> modes = glWindow.Context.GetDisplayModes();
foreach (DisplayMode m in modes)
{
listBox1.Items.Add(m);
}
}
}
}