Example #1
0
        /// <summary>
        /// Loads AutoScrollSign and adds it to the window
        /// </summary>
        internal static void LoadAutoScrollSign()
        {
            autoScrollSign = new AutoScrollSign
            {
                Focusable  = false,
                Opacity    = 0,
                Visibility = Visibility.Hidden,
                Width      = 20,
                Height     = 35
            };

            mainWindow.topLayer.Children.Add(autoScrollSign);
        }
Example #2
0
        /// <summary>
        /// Loads AutoScrollSign and adds it to the window
        /// </summary>
        internal static void LoadAutoScrollSign()
        {
            GetAutoScrollSign = new AutoScrollSign
            {
                Focusable  = false,
                Opacity    = 0,
                Visibility = Visibility.Hidden,
                Width      = 20,
                Height     = 35
            };

            LoadWindows.GetMainWindow.topLayer.Children.Add(GetAutoScrollSign);

#if DEBUG
            Trace.WriteLine(nameof(GetAutoScrollSign) + " loaded ");
#endif
        }