Add project
This commit is contained in:
commit
7fcb279842
961 changed files with 370491 additions and 0 deletions
35
WebBrowser/AppContainer.cs
Normal file
35
WebBrowser/AppContainer.cs
Normal file
|
@ -0,0 +1,35 @@
|
|||
using EasyTabs;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace WebBrowser
|
||||
{
|
||||
public partial class AppContainer : TitleBarTabs
|
||||
{
|
||||
public AppContainer()
|
||||
{
|
||||
InitializeComponent();
|
||||
AeroPeekEnabled = true;
|
||||
TabRenderer = new ChromeTabRenderer(this);
|
||||
|
||||
}
|
||||
|
||||
public override TitleBarTab CreateTab()
|
||||
{
|
||||
return new TitleBarTab(this)
|
||||
{
|
||||
Content = new frmBrowser
|
||||
{
|
||||
Text = "New tab"
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue