This commit is contained in:
2012-09-12 13:03:59 +00:00
parent fdf285fea4
commit 445b71ac38
2 changed files with 93 additions and 0 deletions

View File

@@ -227,6 +227,29 @@ namespace VEPROMS.CSLA.Library
OnPropertyChanged("Graphics_defaultext");
}
}
[Category("Referenced Objects")]
[DisplayName("Images Zipped")]
[RefreshProperties(RefreshProperties.All)]
[Description("Images Stored as Zipped")]
public bool Images_zipped
{
get
{
string s = _Xp["Images", "zipped"];// get the saved value
//Dont't bother getting parent value, this is stored on 'top' node when the images
// are zipped.
if (s == string.Empty)
return false;
if (s.ToUpper() == "TRUE") return true;
return false;
}
set
{
_Xp["Images", "zipped"] = value?"TRUE":"FALSE";
OnPropertyChanged("Images_zipped");
}
}
#endregion
//#region ColorCategory // From veproms.ini
//// ** Note that not all possibilities from 16-bit will be added here, until