This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user