Sophie

Sophie

distrib > Fedora > 17 > i386 > media > updates > by-pkgid > 2b5321e726cf437c81894aac5fc8b184 > files > 116

OpenTK-doc-0.0-5.20130108svn3126.fc17.noarch.rpm

// This code was written for the OpenTK library and has been released
// to the Public Domain.
// It is provided "as is" without express or implied warranty of any kind.

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")]
    public partial class MultipleGLControlsForm : Form
    {
        public MultipleGLControlsForm()
        {
            InitializeComponent();
        }

        public static void Main()
        {
            using (MultipleGLControlsForm example = new MultipleGLControlsForm())
            {
                Utilities.SetWindowTitle(example);
                example.ShowDialog();
            }
        }
    }
}