SilverFlow.Controls.FloatingWindow.FloatingWindow C# (CSharp) Method

FloatingWindow() public method

Initializes a new instance of the FloatingWindow class.
public FloatingWindow ( ) : System
return System
        public FloatingWindow()
        {
            DefaultStyleKey = typeof(FloatingWindow);

            resizeController = new ResizeController(this);
            resizeController.ResizingArea = ResizingAreaThickness;
            snapinController = new SnapinController();
            inertiaController = new InertiaController();
            localStorage = new LocalStorage();
            bitmapHelper = new BitmapHelper();

            this.SetVisible(false);
        }
FloatingWindow