C2018-039: Upgrade – User Control of Format

This commit is contained in:
2018-12-12 15:29:56 +00:00
parent e2392f5fec
commit ddf01e9f9a
7 changed files with 1083 additions and 2 deletions

View File

@@ -2,6 +2,9 @@ using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
using System.Xml;
using System.Xml.Serialization;
using System.Xml.Schema;
namespace VEPROMS.CSLA.Library
{
@@ -44,7 +47,10 @@ namespace VEPROMS.CSLA.Library
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
[NonSerialized]
private bool _IsDirty = false;
[XmlIgnore]
[Browsable(false)]
public bool IsDirty
{
get { return _IsDirty; }