public TabWelcome()
        {
            InitializeComponent();

            ObjBackgroundImage.Source  = SplashScreenWindow.GetSplashImage();
            ObjBackgroundImage.Stretch = Stretch.Fill;
            RenderOptions.SetBitmapScalingMode(ObjBackgroundImage, BitmapScalingMode.HighQuality);

            ObjFlowDocument.Background = new SolidColorBrush(ColorTools.MakeTransparentColor(Colors.Black, 192));

            this.DataContext = ConfigurationManager.Instance.ConfigurationRecord_Bindable;

            ObjGetGoing.Text             = "Let's get started! >>>";
            ObjGetGoingBorder.MouseDown += ObjGetGoing_MouseDown;
            ObjGetGoingBorder.Cursor     = Cursors.Hand;
        }