property page fix

added some debug
This commit is contained in:
2009-09-22 13:57:51 +00:00
parent bb4825939e
commit 8103cc041f
4 changed files with 32 additions and 6 deletions

View File

@@ -354,11 +354,14 @@ namespace VEPROMS.CSLA.Library
}
public FormatInfo ActiveFormat
{
get { return LocalFormat != null ? LocalFormat : ActiveParent.ActiveFormat; }
get {return LocalFormat != null ? LocalFormat : ActiveParent.ActiveFormat;}
}
public FormatInfo LocalFormat
{
get { return MyFormat; }
get {
Console.WriteLine("DV Local {0} {1} {2}", (MyFormat == null) ? "MYformat is null" : MyFormat.Name,FormatID,(MyFormat == null)?0:MyFormat.FormatID);
return MyFormat;
}
}
public ConfigDynamicTypeDescriptor MyConfig
{