public GLTextureWindow()
 {
     this.Controls.Add(panel = new GLTexturePanel() { Dock = DockStyle.Fill });
     this.FormBorderStyle = Forms.FormBorderStyle.SizableToolWindow;
     this.Text = "Texture Preview";
     this.StartPosition = FormStartPosition.CenterParent;
     this.ShowInTaskbar = false;
 }
Esempio n. 2
0
 public GLTextureWindow()
 {
     this.Controls.Add(panel = new GLTexturePanel()
     {
         Dock = DockStyle.Fill
     });
     this.FormBorderStyle = Forms.FormBorderStyle.SizableToolWindow;
     this.Text            = "Texture Preview";
     this.StartPosition   = FormStartPosition.CenterParent;
     this.ShowInTaskbar   = false;
 }