SecureTypingHandler Element

An event handler that provides secure editbox-like input behavior to a UI object. String values are encrypted. Display values are always masked.

Syntax

<SecureTypingHandler
    DisplayValue="string"
    EditableText="EditableText object"
    HandlerStage="{Bubbled | Direct | Routed}"
    MaxLength="int"
    Name="string"
    Value="string"
/>

Attributes

DisplayValue

Returns the current value and is always password masked. This value is read-only.

EditableText

EditableText object associated with the typing handler. The typing handler uses an EditableText object for configuration and storage.

HandlerStage

A member of the InputHandlerStage enumeration indicating the stage in the event handling process when the event will be handled.

MaxLength

Specifies the maximum number of characters.

Name

Contains the name.

Value

The value of the edit control, which is the confirmed value if TypingPolicy is TripleTap. When PasswordMasked is true, this value is the actual string that is entered.

Public Instance Events

Event Description
TypingInputRejected Notification that is sent when the typing input is rejected.

Requirements

Platform: Windows 7

See Also