Opentk/Source/Examples/OpenTK/GLControl/MultipleGLControls.cs
the_fiddler 989be84c96 Moved and renamed examples to match the new example structurs.
Made example source code visible for all examples in example browser.
Updated Prebuild.exe to newest SVN version (resolves issues with resources).
Added .rtf and .resx files to Examples project in Prebuild.xml.
2009-04-20 09:48:33 +00:00

31 lines
777 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using OpenTK;
using OpenTK.Graphics.OpenGL;
namespace Examples.WinForms
{
[Example("Multiple GLControls", ExampleCategory.OpenTK, "GLControl", 3, Documentation="MultipleGLControls.cs")]
public partial class MultipleGLControlsForm : Form
{
public MultipleGLControlsForm()
{
InitializeComponent();
}
public static void Main()
{
using (MultipleGLControlsForm example = new MultipleGLControlsForm())
{
Utilities.SetWindowTitle(example);
example.ShowDialog();
}
}
}
}