diff --git a/Source/GLControl/GLControl.cs b/Source/GLControl/GLControl.cs index e72db4a3..1cf9580d 100644 --- a/Source/GLControl/GLControl.cs +++ b/Source/GLControl/GLControl.cs @@ -123,7 +123,8 @@ namespace OpenTK Context = implementation.CreateContext(major, minor, flags); MakeCurrent(); - ((IGraphicsContextInternal)this.Context).LoadAll(); + if (!DesignMode) + ((IGraphicsContextInternal)Context).LoadAll(); base.OnHandleCreated(e); }