AmandaInterface.FileManagerTabControl.FileManagerTabControl C# (CSharp) Method

FileManagerTabControl() public method

public FileManagerTabControl ( ) : System
return System
        public FileManagerTabControl()
        {
            this.ImageList = new ImageList();
            this.ImageList.Images.Add(Properties.Resources.tab_close);
            this.ImageList.Images.Add(Properties.Resources.tab_close___Copy);

            this.SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | ControlStyles.DoubleBuffer, true);
            this.MouseMove += _MouseMove;
            this.MouseLeave += _MouseLeave;

            this.AllowDrop = true;
            this.DragEnter += _DragEnter;
            this.DragDrop += _DragDrop;

            openDialog.Filter = "Amanda File|*.ama";

            this.MouseClick += _MouseClick;

            AddNewFile();
        }