mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 16:45:35 +00:00
31 lines
774 B
C#
31 lines
774 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")]
|
|
public partial class MultipleGLControlsForm : Form
|
|
{
|
|
public MultipleGLControlsForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public static void Main()
|
|
{
|
|
using (MultipleGLControlsForm example = new MultipleGLControlsForm())
|
|
{
|
|
Utilities.SetWindowTitle(example);
|
|
example.ShowDialog();
|
|
}
|
|
}
|
|
}
|
|
} |