Ejemplo n.º 1
0
        public static object LoadValue(string keyName, string name, object defaultValue)
        {
            RegistryKey keyApp = RegistryLoaderForm.GetAppKey();

            if (ReferenceEquals(null, keyApp))
            {
                return(null);
            }
            var key = keyApp.CreateSubKey(keyName);

            if (ReferenceEquals(null, key))
            {
                return(null);
            }
            return(key.GetValue(name, defaultValue));
        }
Ejemplo n.º 2
0
        public static void SaveValue(string keyName, string name, object value)
        {
            RegistryKey keyApp = RegistryLoaderForm.GetAppKey();

            if (ReferenceEquals(null, keyApp))
            {
                return;
            }
            var key = keyApp.CreateSubKey(keyName);

            if (ReferenceEquals(null, key))
            {
                return;
            }
            key.SetValue(name, value);
        }
Ejemplo n.º 3
0
        public static void LoadLayout(this GameWindow window)
        {
            RegistryKey keyApp = RegistryLoaderForm.GetAppKey();

            if (ReferenceEquals(null, keyApp))
            {
                return;
            }
            var key = keyApp.CreateSubKey("GameWindow");

            if (ReferenceEquals(null, key))
            {
                return;
            }
            window.WindowState = (WindowState)Convert.ToInt32(key.GetValue("WindowState", (int)window.WindowState));
            window.Visible     = Convert.ToBoolean(key.GetValue("visible", window.Visible));
            window.Width       = Convert.ToInt32(key.GetValue("Width", window.Width));
            window.Height      = Convert.ToInt32(key.GetValue("Height", window.Height));
            window.X           = Convert.ToInt32(key.GetValue("X", window.X));
            window.Y           = Convert.ToInt32(key.GetValue("Y", window.Y));
        }
Ejemplo n.º 4
0
        public static void SaveLayout(this GameWindow window)
        {
            RegistryKey keyApp = RegistryLoaderForm.GetAppKey();

            if (ReferenceEquals(null, keyApp))
            {
                return;
            }
            var key = keyApp.CreateSubKey("GameWindow");

            if (ReferenceEquals(null, key))
            {
                return;
            }
            key.SetValue("WindowState", (int)window.WindowState);
            key.SetValue("visible", window.Visible);
            key.SetValue("Width", window.Width);
            key.SetValue("Height", window.Height);
            key.SetValue("X", window.X);
            key.SetValue("Y", window.Y);
        }