New to Telerik UI for WPFStart a free 30-day trial

Represents the signature properties dialog view model.

Definition

Namespace:Telerik.Windows.Controls.FixedDocumentViewersUI.Dialogs.ViewModels

Assembly:Telerik.Windows.Controls.FixedDocumentViewersUI.dll

Syntax:

C#
public class SignaturePropertiesDialogViewModel : DialogViewModelBase<SignaturePropertiesDialogContext>, INotifyPropertyChanged

Inheritance: objectDialogViewModelBase<SignaturePropertiesDialogContext>SignaturePropertiesDialogViewModel

Implements: INotifyPropertyChanged

Inherited Members DialogViewModelBase<SignaturePropertiesDialogContext>.OnPropertyChanged(string)DialogViewModelBase<SignaturePropertiesDialogContext>.ContextDialogViewModelBase<SignaturePropertiesDialogContext>.PropertyChanged

Constructors

Initializes a new instance of the SignaturePropertiesDialogViewModel class.

C#
public SignaturePropertiesDialogViewModel(SignaturePropertiesDialogContext context)
Parameters:contextSignaturePropertiesDialogContext

The context.

Properties

Gets or sets the content of the document is modified.

C#
public string DocumentIsModifiedContent { get; }
Property Value:

The content of the document is modified.

Gets or sets the content of the signature date.

C#
public string SignatureDateContent { get; set; }
Property Value:

The content of the signature date.

Gets or sets the signature general status.

C#
public SignatureGeneralStatus SignatureGeneralStatus { get; }
Property Value:

The signature general status.

Gets or sets the content of the signature validation.

C#
public string SignatureSummaryContent { get; }
Property Value:

The content of the signature validation.

Gets or sets the content of the signer validity.

C#
public string SignerValidityContent { get; }
Property Value:

The content of the signer validity.

Methods

Gets the time of signing in a proper sting format.

C#
protected virtual string GetTimeOfSigning(DateTime timeOfSigning)
Parameters:timeOfSigningDateTime

The time of signing.

Returns:

string

Updates the content of the document is modified.

C#
protected virtual void UpdateDocumentIsModifiedContent(SignatureValidationResult validationResult)
Parameters:validationResultSignatureValidationResult

The validation result.

Updates the content of the signature date.

C#
protected virtual void UpdateSignatureDateContent(SignatureValidationResult validationResult)
Parameters:validationResultSignatureValidationResult

The validation result.

Updates the content of the signature validation.

C#
protected virtual void UpdateSignatureSummaryContent(SignatureValidationResult validationResult)
Parameters:validationResultSignatureValidationResult

The validation result.

Updates the content of the signer validity.

C#
protected virtual void UpdateSignerValidityContent(SignatureValidationResult validationResult)
Parameters:validationResultSignatureValidationResult

The validation result.

Updates the content of the UI.

C#
public virtual void UpdateUIContent()