#if FRAMEWORK20
using System.Windows.Forms;
namespace DevComponents.DotNetBar
{
    public partial class SuperTabDragWindow : Form
    {
        /// 
        /// Constructor
        /// 
        public SuperTabDragWindow()
        {
            InitializeComponent();
            SetStyle(ControlStyles.UserPaint, true);
            SetStyle(ControlStyles.AllPaintingInWmPaint, true);
            SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
        }
        /// 
        /// ShowWithoutActivation
        /// 
        protected override bool ShowWithoutActivation
        {
            get { return true; }
        }
    }
}
#endif