Esempio n. 1
0
 private void Init(RegistryKey theKey, string ParameterName, Size DefaultValue)
 {
     Width  = new RegistryInt(theKey, ParameterName + "_Width", DefaultValue.Width);
     Height = new RegistryInt(theKey, ParameterName + "_Height", DefaultValue.Height);
 }
Esempio n. 2
0
 private void Init(RegistryKey theKey, string ParameterName, Point DefaultValue)
 {
     X = new RegistryInt(theKey, ParameterName + "_X", DefaultValue.X);
     Y = new RegistryInt(theKey, ParameterName + "_Y", DefaultValue.Y);
 }