| Member | Description |
|---|---|
Constructor |
Constructor |
ContentStatusChanged |
Content status changed event |
BeforeLoadContents |
This method is called before contents are loaded into this form public virtual void BeforeLoadContents(); |
BindAllControls |
Initiates (refreshes) binding for all controls on this form. public void BindAllControls(); |
Delete |
OVERRIDE ONLY! DO NOT CALL THIS METHOD DIRECTLY public virtual bool Delete(); |
DeleteData |
Triggers the deletion of data public sealed void DeleteData(); |
HandleDataException |
This method is called whenever an exception is raised during data loading. public sealed void HandleDataException( Exception ex ); |
InitialLoad |
Loads content by a string key public virtual void InitialLoad( string key ); public virtual void InitialLoad( int key ); public virtual void InitialLoad( Guid key ); public virtual void InitialLoad( NameValueCollection queryString ); public virtual void InitialLoad( Dictionary<String,Object> queryString ); |
InitialNew |
Creates new content based on a collection of parameters public virtual void InitialNew( NameValueCollection queryString ); public virtual void InitialNew( Dictionary<String,Object> queryString ); public virtual void InitialNew(); |
LoadContents |
Loads contents public virtual object LoadContents(); |
LoadSecondaryData |
Loads support data public virtual object LoadSecondaryData(); |
LoadSupportData |
Loads support data public virtual void LoadSupportData(); |
NewContents |
Creates new contents public virtual object NewContents(); |
NewData |
Creates new data public virtual void NewData(); |
Save |
OVERRIDE THIS METHOD. DO NOT CALL THIS METHOD DIRECTLY! public virtual bool Save(); |
SaveAndClose |
Save and close public virtual void SaveAndClose(); |
SaveData |
Saves the data currently edited in the form public virtual void SaveData(); |
SetEntityType |
public void SetEntityType(); |
SetStatus |
Sets the status of the form as displayed in the status bar. public virtual void SetStatus( string status ); |
ShowContents |
This method is called whenever content needs to be refreshed manually public virtual void ShowContents(); |
ShowContentsAuto |
This method is invoked whenever the pane contents need to be presented to the user, public virtual void ShowContentsAuto(); |
Verify |
ONLY OVERRIDE THIS METHOD. DO NOT CALL DIRECTLY! public virtual bool Verify(); |
VerifyData |
Verifies the data in the current form. public virtual void VerifyData( EventHandler<VerifiedEventArgs> successCallback, EventHandler<VerifiedEventArgs> failureCallback ); public virtual void VerifyData(); |
AutoBindDelayedControls |
Defines whether or not delayed controls should be bound automatically, |
ContentStatus |
Content status |
MainEntity |
Main data entity |
MultiThreaded |
Should the data operations happen multi-threaded? |
PerformAutoDelete |
Should the object perform auto deletes based on the entity type specified? |
PerformAutoLoad |
Should the object perform auto loads based on the entity type specified? |
PerformAutoNew |
Should the object perform auto news based on the entity type specified? |
PerformAutoSave |
Should the object perform auto saves based on the entity type specified? |
PerformAutoVerify |
Should the object perform auto verifies based on the entity type specified? |
SkinName |
Name of the skin to use |