Click here to Skip to main content
15,896,444 members
Articles / Programming Languages / C#

Implementing Audit Trail using Entity Framework - Part 2

Rate me:
Please Sign up or sign in to vote.
4.16/5 (15 votes)
1 Apr 2009CPOL3 min read 69.9K   1.4K   41  
Implementing Audit Trail using Entity Framework's caching entries
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<doc>
    <assembly>
        <name>Xceed.Wpf.Controls</name>
    </assembly>
    <members>
        <member name="N:Xceed.Wpf.Controls">
            <summary>The Xceed.Wpf.Controls namespace defines various controls and utilities that are used by Xceed DataGrid for WPF.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.AutoSelectBehavior">
            <summary>Value indicating how the content of an AutoSelectTextBox is selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.AutoSelectBehavior.Never">
            <summary>The content is never selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.AutoSelectBehavior.OnFocus">
            <summary>The context is selected when the AutoSelectTextBox received the focus.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.DateComponent">
            <summary>Value representing a date component.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateComponent.Year">
            <summary>A year date component.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateComponent.Month">
            <summary>A month date component.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateComponent.Day">
            <summary>A day date component.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.DateTimeMaskMode">
            <summary>Value indicating the mode used to mask inputted text as a date and time format.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateTimeMaskMode.Custom">
            <summary>The  CustomFormatSpecifier will be used.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateTimeMaskMode.ShortDate">
            <summary>The short date mask mode will be used.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateTimeMaskMode.ShortDateAndShortTime">
            <summary>The short date and time mask mode will be used.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateTimeMaskMode.ShortDateAndLongTime">
            <summary>The short date and long time mask mode will be used.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateTimeMaskMode.ShortTime">
            <summary>The short time mask mode will be used.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateTimeMaskMode.LongTime">
            <summary>The long time mask mode will be used.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.InsertKeyMode">
            <summary>Value representing the text insertion mode of the masked text box.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.InsertKeyMode.Default">
            <summary>The current INSERT key mode of the keyboard will be used.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.InsertKeyMode.Insert">
            <summary>The insertion mode is always enabled.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.InsertKeyMode.Overwrite">
            <summary>The overwrite mode is always enabled.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.MaskFormat">
            <summary>Value representing the format that will be used when the inputted text is copied to the clipboard.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskFormat.ExcludePromptAndLiterals">
            <summary>Prompt characters and literals will be excluded.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskFormat.IncludeLiterals">
            <summary>Only literals will be included.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskFormat.IncludePrompt">
            <summary>Only prompt characters will be included.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskFormat.IncludePromptAndLiterals">
            <summary>Both prompt characters and literals will be included.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.AutoCompletingMaskEventArgs">
            <summary>Provides information on inputted text whose mask is being automatically completed.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.AutoCompletingMaskEventArgs.#ctor(System.ComponentModel.MaskedTextProvider,System.Int32,System.Int32,System.String)">
            <summary>Initializes a new instance of the AutoCompletingMaskEventArgs class specifying the inputted text as well as the information required to automatically complete the mask.</summary>
            <param name="maskedTextProvider">A copy of the MaskTextProvider that was used to mask the inputted text.</param>
            <param name="startPosition">A zero-based value indicating the position at which the automatic completion of the mask starts.</param>
            <param name="selectionLength">A value indicating the number of selected characters.</param>
            <param name="input">The inputted text.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.AutoCompletingMaskEventArgs.AutoCompleteStartPosition">
            <summary>Gets or sets a value indicating the position at which the automatic completion of the mask starts.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.AutoCompletingMaskEventArgs.AutoCompleteText">
            <summary>Gets or sets the text that will be used to automatically complete the mask.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.AutoCompletingMaskEventArgs.Input">
            <summary>Gets the inputted text.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.AutoCompletingMaskEventArgs.MaskedTextProvider">
            <summary>Gets a copy of the MaskTextProvider that was used to mask the inputted text.</summary>
            <remarks>Any modifications made to this instance will not be reflected on the control.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.AutoCompletingMaskEventArgs.SelectionLength">
            <summary>    Gets a value indicating the number of selected     characters.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.AutoCompletingMaskEventArgs.StartPosition">
            <summary>Gets the position at which the inputted text starts.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.AutoSelectTextBox">
            <summary>Represents a text box whose content is selected when it receives the focus as well as performs automatic focus navigation when the caret reaches the extremities of the text range.  " -->" --></summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.AutoSelectTextBox.#ctor">
            <summary>Initializes a new instance of the AutoSelectTextBox class.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.AutoSelectTextBox.OnPreviewGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs)">
            <summary>Invoked when an unhandled PreviewGotKeyboardFocus attached event reaches this element in its route.</summary>
            <param name="e">A KeyboardFocusChangedEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.AutoSelectTextBox.OnPreviewKeyDown(System.Windows.Input.KeyEventArgs)">
            <summary>Invoked when an unhandled PreviewKeyDown attached event reaches this element in its route.</summary>
            <param name="e">A KeyEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.AutoSelectTextBox.OnPreviewMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs)">
            <summary>Invoked when an unhandled PreviewMouseLeftButtonDown attached event reaches this element in its route.</summary>
            <param name="e">A MouseButtonEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.AutoSelectTextBox.OnTextChanged(System.Windows.Controls.TextChangedEventArgs)">
            <summary>Raises the TextChanged event.</summary>
            <param name="e">A TextChangedEventArgs that contains the event data.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.AutoSelectTextBox.AutoMoveFocus">
            <summary>Gets or sets a value indicating if the focus can navigate in the appropriate flow direction (e.g., from one cell to another when a cell is being edited) when the cursor is at the beginning or end of the auto-select text box.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.AutoSelectTextBox.AutoSelectBehavior">
            <summary>Gets or sets a value indicating how the content of the auto-select text box is selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.AutoSelectTextBox.AutoMoveFocusProperty">
            <summary>Identifies the  AutoMoveFocus dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.AutoSelectTextBox.AutoSelectBehaviorProperty">
            <summary>Identifies the  AutoSelectBehavior dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.AutoSelectTextBox.QueryMoveFocusEvent">
            <summary>Occurs before the focus navigates to another element.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.CalendarItem">
            <summary>Represents an item (day) in the DatePicker's calendar.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.CalendarItem.Content">
            <summary>Gets or sets the content of the CalendarItem.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.CalendarItem.ContentTemplate">
            <summary>Gets or sets the template used to display the content of the CalendarItem.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.CalendarItem.ContentTemplateSelector">
            <summary>Gets or sets a template selector that enables an application writer to provide custom template-selection logic.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.CalendarItem.Date">
            <summary>Gets the date represented by the CalendarItem.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.CalendarItem.HasContent">
            <summary>Gets a value indicating if the CalendarItem contains content.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.CalendarItem.IsPreview">
            <summary>Gets a value indicating if the CalendarItem represents a preview day.</summary>
            <remarks>    A preview day is a day that appears on the currently     displayed month but that belongs either to the previous or next     months.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.CalendarItem.IsToday">
            <summary>Gets a value indicating if the CalendarItem represents the present date ("Today").</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.CalendarItem.ContentProperty">
            <summary>Identifies the Content dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.CalendarItem.ContentTemplateProperty">
            <summary>Identifies the  ContentTemplate dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.CalendarItem.ContentTemplateSelectorProperty">
            <summary>Identifies the  ContentTemplateSelector dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.CalendarItem.HasContentProperty">
            <summary>Identifies the  HasContent dependency property.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.CheckBox">
            <summary>Represents a control used to edit and display boolean values. This class should be used rather than the system provided CheckBox control which causes issues with focus when used within a focus scope (e.g., DataGridControl).</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.CheckBox.OnKeyDown(System.Windows.Input.KeyEventArgs)">
            <summary>Invoked when an unhandled KeyDown attached event reaches this element in its route.</summary>
            <param name="e">A KeyEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.CheckBox.OnKeyUp(System.Windows.Input.KeyEventArgs)">
            <summary>Invoked when an unhandled KeyUp attached event reaches this element in its route.</summary>
            <param name="e">A KeyEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.CheckBox.OnPreviewKeyDown(System.Windows.Input.KeyEventArgs)">
            <summary>Invoked when an unhandled PreviewKeyDown attached event reaches this element in its route.</summary>
            <param name="e">A KeyEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.CheckBox.OnPreviewKeyUp(System.Windows.Input.KeyEventArgs)">
            <summary>Invoked when an unhandled PreviewKeyUp attached event reaches this element in its route.</summary>
            <param name="e">A KeyEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.CheckBox.OnPreviewMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs)">
            <summary>Invoked when an unhandled PreviewMouseLeftButtonDown attached event reaches this element in its route.</summary>
            <param name="e">A MouseButtonEventArgs that contains the event data.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.CheckBox.IsChecked">
            <summary>Gets or sets a value indicating if the checkbox is checked.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.CheckBox.IsThreeState">
            <summary>Gets or sets a value indicating if the checkbox can be in an undetermined state: neither checked or unchecked.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.CheckBox.CheckedEvent">
            <summary>Identifies the Checked routed event.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.CheckBox.IndeterminateEvent">
            <summary>Identifies the  Indeterminate routed event.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.CheckBox.IsCheckedProperty">
            <summary>Identifies the IsChecked dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.CheckBox.IsThreeStateProperty">
            <summary>Identifies the IsThreeState dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.CheckBox.UncheckedEvent">
            <summary>Identifies the Unchecked routed event.</summary>
        </member>
        <member name="E:Xceed.Wpf.Controls.CheckBox.Checked">
            <summary>Raised when the checkbox is checked.</summary>
        </member>
        <member name="E:Xceed.Wpf.Controls.CheckBox.Indeterminate">
            <summary>Raised when the checkbox is in an indeterminate state: neither checked or unchecked.</summary>
        </member>
        <member name="E:Xceed.Wpf.Controls.CheckBox.Unchecked">
            <summary>Raised when the checkbox is unchecked.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.DateInputScope">
            <summary>    Represents an element which filters input that is not     numerical.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateInputScope.#ctor">
            <summary>Initializes a new instance of the DateInputScope class.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateInputScope.OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs)">
            <summary>    Reports a change to the     IsKeyboardFocusWithin property.</summary>
            <param name="e">A DependencyPropertyChangedEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateInputScope.OnKeyDown(System.Windows.Input.KeyEventArgs)">
            <summary>Invoked when an unhandled KeyDown attached event reaches this element in its route.</summary>
            <param name="e">A KeyEventArgs that contains the event data.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.DateInputScope.DateOutput">
            <summary>Gets or sets the final outputted DateTime value.</summary>
            <remarks>This property is refreshed when the focus leaves the DateInputScope.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DateInputScope.Day">
            <summary>Gets or sets the day portion of the DateInputScope.</summary>
            <remarks>This property is refreshed when the focus leaves the DateInputScope.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DateInputScope.Month">
            <summary>Gets or sets the month portion of the DateInputScope.</summary>
            <remarks>This property is refreshed when the focus leaves the DateInputScope.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DateInputScope.Year">
            <summary>Gets or sets the year portion of the DateInputScope.</summary>
            <remarks>This property is refreshed when the focus leaves the DateInputScope.</remarks>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateInputScope.DateOutputProperty">
            <summary>Identifies the  DateOutput dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateInputScope.DayProperty">
            <summary>Identifies the Day dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateInputScope.MonthProperty">
            <summary>Identifies the Month dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateInputScope.YearProperty">
            <summary>Identifies the Year dependency property.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.DateLayoutPanel">
            <summary>Represents a panel that can be used to layout the date components.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateLayoutPanel.ArrangeOverride(System.Windows.Size)">
            <summary>Arranges the child elements of the panel.</summary>
            <returns>The Size that represents the arranged size of the panel.</returns>
            <param name="finalSize">The Size this element uses to arrange its child elements.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateLayoutPanel.GetDateComponent(System.Windows.DependencyObject)">
            <summary>Gets a value representing the portion of the date displayed in the DateLayoutPanel.</summary>
            <returns>A DateComponent value representing the portion of the data displayed in the DateLayoutPanel.</returns>
            <param name="d">The dependency object from which the property value is read. By default, -1.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateLayoutPanel.MeasureOverride(System.Windows.Size)">
            <summary>Measures the child elements in anticipation of arranging them during the  ArrangeOverride pass.</summary>
            <returns>The Size that represents the desired size of the element.</returns>
            <param name="availableSize">    An upper limit Size that should not be exceeded.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateLayoutPanel.OnPreviewGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs)">
            <summary>Invoked when an unhandled PreviewGotKeyboardFocus attached event reaches this element in its route.</summary>
            <param name="e">A KeyboardFocusChangedEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateLayoutPanel.SetDateComponent(System.Windows.DependencyObject,Xceed.Wpf.Controls.DateComponent)">
            <summary>Sets a value representing the portion of the date displayed in the DateLayoutPanel.</summary>
            <param name="d">The dependency object to which the attached property is written.</param>
            <param name="value">A DateComponent value representing the portion of the date displayed in the DateLayoutPanel.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.DateLayoutPanel.SeparatorTemplate">
            <summary>Gets or sets the separator DataTemplate.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateLayoutPanel.DateComponentProperty">
            <summary>Identifies the DateComponent attached property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateLayoutPanel.SeparatorTemplateProperty">
            <summary>Identifies the SeparatorTemplate dependency property.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.DatePicker">
            <summary>Represents a control used to edit and display dates.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.DatePicker.OnGotFocus(System.Windows.RoutedEventArgs)">
            <summary>Invoked when an unhandled GotFocus attached event reaches this element in its route.</summary>
            <param name="e">A RoutedEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.DatePicker.OnPreviewGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs)">
            <summary>Called when an unhandled PreviewGotKeyboardFocus event reaches this element.</summary>
            <param name="e">A KeyboardFocusChangedEventArgs that contains the event data.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.CalendarItemContainerStyle">
            <summary>Gets or sets the style to apply to the CalendarItem container.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.CalendarItemContainerStyleSelector">
            <summary>Gets or sets a StyleSelector which provides custom style-selection logic for a style that can be applied to each generated container element.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.CalendarItems">
            <summary>Gets the CalendarItems contained in the DatePicker's calendar.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.CalendarItemTemplate">
            <summary>Gets or set the   DataTemplate used to display each CalendarItem.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.CalendarItemTemplateSelector">
            <summary>Gets or sets a DataTemplateSelector which provides custom logic for choosing a template used to display each CalendarItem.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.CustomFormatSpecifier">
            <summary>Gets or sets the custom format specifier that will be used to mask the inputted text.</summary>
            <remarks>The custom format specifier will only be used if the  DateTimeMaskMode property is set to DateTimeMaskMode.Custom.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.DateTimeMaskMode">
            <summary>Gets or sets a value indicating the date and time mask to apply to the inputted text.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.DayNames">
            <summary>    Gets or sets a one-dimensional string array containing the culture-specific full names of the days     of the week, starting with the first day of the week defined by     the current culture.</summary>
            <remarks>This property has no internal storage (100 re-generated when consulted) and will not receive change notifications.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.DisplayedMonth">
            <summary>    Gets or sets the month currently displayed in the     DatePicker's calendar.</summary>
            <remarks>    Changing this property will cause the      CalendarItems collection to update with the values of the     new month.     If the      SyncCalendarWithSelectedDate property is set to     true, changes made to the      SelectedDate will also be applied to the      DisplayedMonth/DisplayedYear     properties.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.DisplayedMonthName">
            <summary>Gets the name of the month currently displayed in the DatePicker's calendar.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.DisplayedYear">
            <summary>Gets or sets the year currently displayed in the DatePicker's calendar.</summary>
            <remarks>    Changing this property will cause the      CalendarItems collection to update with the values of the     new month/year.     If the      SyncCalendarWithSelectedDate property is set to     true, changes made to the      SelectedDate will also be applied to the      DisplayedMonth/DisplayedYear     properties.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.FormatProvider">
            <summary>Gets or sets the IFormatProvider that will be used to perform type validation.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.IsSelectedDateToday">
            <summary>Gets a value indicating if  SelectedDate corresponds to the current date ("Today").</summary>
            <remarks>This property has no internal storage (100 re-generated when consulted) and will not receive change notifications.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.SelectedDate">
            <summary>Gets or sets the selected date.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.ShortestDayNames">
            <summary>    Gets or sets a one-dimensional string array containing the culture-specific shortest unique     abbreviated names of the days of the week, starting with the     first day of the week defined by the current     culture.</summary>
            <remarks>This property has no internal storage (100 re-generated when consulted) and will not receive change notifications.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.SyncCalendarWithSelectedDate">
            <summary>Gets or sets a value indicating if the date displayed in the DatePicker's calendar and the  SelectedDate displayed in the DatePicker's text box should always be synchronized.</summary>
            <remarks>    If the      SyncCalendarWithSelectedDate property is set to     true, changes made to the      SelectedDate will also be applied to the      DisplayedMonth/DisplayedYear     properties.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DatePicker.TodayContent">
            <summary>Gets or sets the content of the "Today" button.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.CalendarItemContainerStyleProperty">
            <summary>Identifies the CalendarItemContainerStyle dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.CalendarItemContainerStyleSelectorProperty">
            <summary>Identifies the CalendarItemContainerStyleSelector dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.CalendarItemTemplateProperty">
            <summary>Identifies the CalendarItemTemplate dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.CalendarItemTemplateSelectorProperty">
            <summary>Identifies the CalendarItemTemplateSelector dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.CustomFormatSpecifierProperty">
            <summary>Identifies the  CustomFormatSpecifier dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.DateTimeMaskModeProperty">
            <summary>Identifies the  DateTimeMaskMode dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.DisplayedMonthNameProperty">
            <summary>Identifies the  DisplayedMonthName dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.DisplayedMonthProperty">
            <summary>Identifies the  DisplayedMonth dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.DisplayedYearProperty">
            <summary>Identifies the  DisplayedYear dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.FormatProviderProperty">
            <summary>Identifies the  FormatProvider dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.SelectedDateProperty">
            <summary>Identifies the SelectedDate dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.SyncCalendarWithSelectedDateProperty">
            <summary>Identifies the  SyncCalendarWithSelectedDate dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePicker.TodayContentProperty">
            <summary>Identifies the  TodayContent dependency property.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.DatePickerCommands">
            <summary>Provides a set of commands that can be used to change the selected and displayed dates in the DatePicker control.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.ChangeDisplayedMonth">
            <summary>Represents the ChangeDisplayedMonth command, which requests that the currently displayed month be changed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.ChangeDisplayedYear">
            <summary>Represents the ChangeDisplayedYear command, which requests that the currently displayed year be changed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.ChangeSelectedDay">
            <summary>Represents the ChangeSelectedDay command, which requests that the selected day be changed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.ChangeSelectedMonth">
            <summary>Represents the ChangeSelectedMonth command, which requests that the selected month be changed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.ChangeSelectedWeek">
            <summary>Represents the ChangeWeek command, which requests that the current week be changed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.ChangeSelectedYear">
            <summary>Represents the ChangeSelectedYear command, which requests that the selected year be changed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.DisplayNextMonth">
            <summary>Represents the DisplayNextMonth command, which requests that the next month be displayed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.DisplayNextYear">
            <summary>Represents the DisplayNextYear command, which requests that the next year be displayed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.DisplayPreviousMonth">
            <summary>Represents the DisplayPreviousMonth command, which requests that the previous month be displayed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.DisplayPreviousYear">
            <summary>Represents the DisplayPreviousYear command, which requests that the previous year be displayed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.DisplayToday">
            <summary>Represents the DisplayToday command, which requests that the present date ("Today") be displayed.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.SelectNextDay">
            <summary>Represents the SelectNextDay command, which requests that the next day be selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.SelectNextMonth">
            <summary>Represents the SelectNextMonth command, which requests that the same day in the next month be selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.SelectNextWeek">
            <summary>Represents the SelectNextWeek command, which requests that the same day in the next week be selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.SelectNextYear">
            <summary>Represents that SelectNextYear command, which requests that the same day in the next year be selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.SelectPreviousDay">
            <summary>Represents the SelectPreviousDay command, which requests that the previous day be selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.SelectPreviousMonth">
            <summary>Represents the SelectPreviousMonth command, which requests that the same day in the previous month be selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.SelectPreviousWeek">
            <summary>Represents the SelectPreviousWeek command, which requests that the same day in the previous week be selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.SelectPreviousYear">
            <summary>Represents the SelectPreviousYear command, which requests that the same day in the previous year be selected.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DatePickerCommands.SelectToday">
            <summary>Represents the SelectToday command, which requests that the present date ("Today") be selected.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.DateTimeTextBox">
            <summary>Represents a control that limits the value extracted from the inputted text to be a DateTime value.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateTimeTextBox.GetFullFormatSpecifier(Xceed.Wpf.Controls.DateTimeMaskMode,System.IFormatProvider)">
            <summary>Retrieves the full format specifier for the specified  DateTimeMaskMode and format provider.</summary>
            <param name="dateTimeMaskMode">A DateTimeMaskMode value representing the mode that was used to mask the inputted text.</param>
            <param name="formatProvider">The IFormatProvider that will be used to create the format specifier.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateTimeTextBox.OnAutoCompletingMask(Xceed.Wpf.Controls.AutoCompletingMaskEventArgs)">
            <summary>    Raises the      AutoCompletingMask event.</summary>
            <param name="e">    An      AutoCompletingMaskEventArgs that contains the event     data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateTimeTextBox.OnInitialized(System.EventArgs)">
            <summary>Raises the Initialized event.</summary>
            <param name="e">An EventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.DateTimeTextBox.QueryValueFromTextCore(System.String,System.Object@)">
            <summary>    Queries the specified text and returns its     corresponding value converted to the type specified by     the      ValueDataType property and according to the format defined     by the      FormatSpecifier property.</summary>
            <returns>true if a value was extracted from the specified text; false otherwise.</returns>
            <param name="text">A string representing the text to be converted.</param>
            <param name="value">    The converted value. Can be $$NULL$$ if a value could not     be extracted from text.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.DateTimeTextBox.CustomFormatSpecifier">
            <summary>Gets or sets the custom format specifier that will be used to mask the inputted text.</summary>
            <remarks>The custom format specifier will only be used if the  DateTimeMaskMode property is set to DateTimeMaskMode.Custom.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.DateTimeTextBox.DateTimeMaskMode">
            <summary>Gets or sets a value indicating the date and time mask to apply to the inputted text.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateTimeTextBox.CustomFormatSpecifierProperty">
            <summary>Identifies the  CustomFormatSpecifier dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.DateTimeTextBox.DateTimeMaskModeProperty">
            <summary>Identifies the  DateTimeMaskMode dependency property.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.Licenser">
            <summary>Class that registers the classes defined in the Xceed.Wpf.Controls assembly.</summary>
            <remarks>    It is recommended that the      LicenseKey property be set in one of the following     locations:                                            Application.OnStartup                 method                 Preferred location                                           Form.Loaded event                 The LicenseKey                 property can be set in this event as long as the                 startup form is known and invariable.                                Setting the      LicenseKey property of the Licenser     class defined in the Xceed.Wpf.DataGrid assembly will     automatically license the classes in the Xceed.Wpf.Controls     assembly.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.Licenser.LicenseKey">
            <summary>Gets or sets the license key used to license the classes contained in the Xceed.Wpf.Controls assembly.</summary>
            <remarks>    It is recommended that the      LicenseKey property be set in one of the following     locations:                                            Application.OnStartup                 method                 Preferred location                                           Form.Loaded event                 The LicenseKey                 property can be set in this event as long as the                 startup form is known and invariable.                                Setting the      LicenseKey property of the Licenser     class defined in the Xceed.Wpf.DataGrid assembly will     automatically license the classes in the Xceed.Wpf.Controls     assembly.</remarks>
        </member>
        <member name="T:Xceed.Wpf.Controls.MaskedTextBox">
            <summary>Represents a control that limits the inputted text to be of the format determined by the specified mask.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.CreateMaskedTextProvider(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean)">
            <summary>Creates the masked-text provider that will be used by the masked text box specifying various settings.</summary>
            <param name="mask">The string that will be used as the input mask.</param>
            <param name="cultureInfo">    The CultureInfo that will be used by the     masked-text provider.</param>
            <param name="allowPromptAsInput">true if the prompt char should be considered as a valid input character; false, otherwise. By default, true.</param>
            <param name="promptChar">A character that represents the positions in the masked text box that require input. By default, "_"­ (underscore).</param>
            <param name="passwordChar">A character that represents the character to used to mask a password.</param>
            <param name="restrictToAscii">true if non-ASCII characters are accepted; false otherwise. By default, false.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.GetFormatSpecifierFromMask(System.String,System.IFormatProvider)">
            <summary>Retrieves a format specifier from the specified mask and format provider.</summary>
            <param name="mask">The mask from which the format specifier is to be extracted.</param>
            <param name="formatProvider">An IFormatProvider that will be used to extract the appropriate symbols for any numeric mask characters contained in the mask.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.GetMaskCharacters">
            <summary>Retrieves the mask characters that are supported by the masked text box.</summary>
            <returns>An array of characters containing the mask characters that are supported by the masked text box (see Remarks).</returns>
            <remarks>    The following table provides a list of the supported mask     characters:                                                                 Mask character                     Description                     Importance                                                       0                     Digit. Any single digit between                     0 and 9 inclusively.                     Required                                                       9                     Digit or space.                     Optional                                                       #                     Digit or space. If this position is blank                     in the mask, it will be rendered as a space.                     Plus (+) and minus (-) signs are allowed.                                                                            L                     Letter. Restricts input to the                     ASCII letters a-z and A-Z.                     Required                                                       ?                     Letter. Restricts input to the ASCII                     letters a-z and A-Z                     Optional                                                       &amp;                     Character. If the                      RestrictToAscii property is set to                     true, this character will                     behave like the "L" character.                     Required                                                       C                     Character. Any non-control character. If                     the                      RestrictToAscii property is set to                     true, this character will                     behave like the "?" character.                     Optional                                                       A                     Alphanumeric. If the                      RestrictToAscii property is set to                     true, input will be restricted                     to the ASCII letters a-z and A-Z.                     Optional                                                       a                     Alphanumeric. If the                      RestrictToAscii property is set to                     true, input will be restricted                     to the ASCII letters a-z and A-Z.                     Optional                                                       .                     Decimal placeholder. The actual                     character will be the decimal symbol                     appropriate to the                      format provider.                     N/A                                                       ,                     Thousands placeholder. The actual character                     will be the thousands symbol appropriate to the                                          format provider.                     N/A                                                       :                     Time separator. The actual character will                     be the time separator appropriate to the                                          format provider.                     N/A                                                       /                     Date separator. The actual character will                     be the date separator appropriate to the                                          format provider.                     N/A                                                       $                     Currency symbol. The actual character will                     be the currency symbol appropriate to the                                          format provider.                     N/A                                                       &lt;                     Shift down. Converts all following                     characters to lower case.                     N/A                                                       &gt;                     Shift up. Converts all following characters                     to upper case.                     N/A                                                       |                     Disable a previous shift up or down.                     N/A                                                       \                     Escape. Converts a mask character into a                     literal.                     N/A                                                       All others                     Literals                     N/A                                            </remarks>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.OnAutoCompletingMask(Xceed.Wpf.Controls.AutoCompletingMaskEventArgs)">
            <summary>Raises the  AutoCompletingMask event.</summary>
            <param name="e">An  AutoCompletingMaskEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.OnDragEnter(System.Windows.DragEventArgs)">
            <summary>Called when an unhandled DragEnter attached routed event reaches this element.</summary>
            <param name="e">A DragEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.OnDragOver(System.Windows.DragEventArgs)">
            <summary>Called when an unhandled DragOver attached routed event reaches this element.</summary>
            <param name="e">A DragEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.OnInitialized(System.EventArgs)">
            <summary>Raises the Initialized event.</summary>
            <param name="e">An EventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.OnTextInput(System.Windows.Input.TextCompositionEventArgs)">
            <summary>    Called when an unhandled TextInput event     reaches this element.</summary>
            <param name="e">    A TextCompositionEventArgs that contains     the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.QueryTextFromValueCore(System.Object)">
            <summary>    Queries the specified value and returns its     string representation.</summary>
            <param name="value">    An object representing the value whose string     representation is to be returned.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.QueryValueFromTextCore(System.String,System.Object@)">
            <summary>    Queries the specified text and returns its     corresponding value converted to the type specified by     the      ValueDataType property and according to the format defined     by the      FormatSpecifier property.</summary>
            <returns>true if a value was extracted from the specified text; false otherwise.</returns>
            <param name="text">A string representing the text to be converted.</param>
            <param name="value">    The converted value. Can be $$NULL$$ if a value could not     be extracted from text.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.MaskedTextBox.ValidateValue(System.Object)">
            <summary>Validates the specified value to ensure that it fits in the mask specified by the Mask property.</summary>
            <param name="value">The value to validated.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.AllowPromptAsInput">
            <summary>Gets or sets a value indicating if the  prompt character should be considered as a valid input character.</summary>
            <remarks>         ResetOnPrompt takes precedence over the     AllowPromptAsInput property:                                                                 ResetOnPrompt value                     AllowPromptAsInput value                     Behavior                                                       true                     true                     The prompt character can be entered and it                     causes the current mask position to be                     reset.                                                       true                     false                     The prompt character can be entered and it                     causes the current mask position to be                     reset.                                                       false                     true                                              The prompt character is processed as                         a standard input character.                                                                            false                     false                     The prompt character is not a valid input                     character.                                            </remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.ClipboardMaskFormat">
            <summary>Gets or sets a value representing the mask format that will be used when the inputted text is copied to the clipboard.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.HidePromptOnLeave">
            <summary>Gets or sets a value indicating if the  prompt character is hidden when the masked text box loses focus.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.IncludeLiteralsInValue">
            <summary>Gets or sets a value indicating if the literal characters in the input mask should be included in the formatted value.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.InsertKeyMode">
            <summary>Gets or sets a value representing the text insertion mode of the masked text box.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.IsMaskCompleted">
            <summary>Gets a value indicating if all required characters have been inputted into the mask.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.IsMaskFull">
            <summary>Gets a value indicating if all characters, required and optional, have been inputted into the mask.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.Mask">
            <summary>Gets or sets the input mask.</summary>
            <remarks>    The following table provides a list of the supported mask     characters:                                                                 Mask character                     Description                     Importance                                                       0                     Digit. Any single digit between                     0 and 9 inclusively.                     Required                                                       9                     Digit or space.                     Optional                                                       #                     Digit or space. If this position is blank                     in the mask, it will be rendered as a space.                     Plus (+) and minus (-) signs are allowed.                                                                            L                     Letter. Restricts input to the                     ASCII letters a-z and A-Z.                     Required                                                       ?                     Letter. Restricts input to the ASCII                     letters a-z and A-Z                     Optional                                                       &amp;                     Character. If the                      RestrictToAscii property is set to                     true, this character will                     behave like the "L" character.                     Required                                                       C                     Character. Any non-control character. If                     the                      RestrictToAscii property is set to                     true, this character will                     behave like the "?" character.                     Optional                                                       A                     Alphanumeric. If the                      RestrictToAscii property is set to                     true, input will be restricted                     to the ASCII letters a-z and A-Z.                     Optional                                                       a                     Alphanumeric. If the                      RestrictToAscii property is set to                     true, input will be restricted                     to the ASCII letters a-z and A-Z.                     Optional                                                       .                     Decimal placeholder. The actual                     character will be the decimal symbol                     appropriate to the                      format provider.                     N/A                                                       ,                     Thousands placeholder. The actual character                     will be the thousands symbol appropriate to the                                          format provider.                     N/A                                                       :                     Time separator. The actual character will                     be the time separator appropriate to the                                          format provider.                     N/A                                                       /                     Date separator. The actual character will                     be the date separator appropriate to the                                          format provider.                     N/A                                                       $                     Currency symbol. The actual character will                     be the currency symbol appropriate to the                                          format provider.                     N/A                                                       &lt;                     Shift down. Converts all following                     characters to lower case.                     N/A                                                       &gt;                     Shift up. Converts all following characters                     to upper case.                     N/A                                                       |                     Disable a previous shift up or down.                     N/A                                                       \                     Escape. Converts a mask character into a                     literal.                     N/A                                                       All others                     Literals                     N/A                                            </remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.MaskedTextProvider">
            <summary>    Gets a copy of the MaskTextProvider that     was used to mask the inputted text.</summary>
            <remarks>Any modifications made to this instance will not be reflected on the control.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.PromptChar">
            <summary>Gets or sets the character that represents the positions in the masked text box that require user input.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.RejectInputOnFirstFailure">
            <summary>Gets or sets a value indicating if the parsing of the user input should stop after a first invalid character is found.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.ResetOnPrompt">
            <summary>Gets or sets a value indicating if the character at the current caret position should be reset when the prompt character is pressed.</summary>
            <remarks>         ResetOnPrompt takes precedence over the     AllowPromptAsInput property:                                                                 ResetOnPrompt value                     AllowPromptAsInput value                     Behavior                                                       true                     true                     The prompt character can be entered and it                     causes the current mask position to be                     reset.                                                       true                     false                     The prompt character can be entered and it                     causes the current mask position to be                     reset.                                                       false                     true                                              The prompt character is processed as                         a standard input character.                                                                            false                     false                     The prompt character is not a valid input                     character.                                            </remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.RestrictToAscii">
            <summary>Gets or sets a value indicating ig the masked text box accepts non-ASCII characters.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.MaskedTextBox.SkipLiterals">
            <summary>Gets or sets a value indicating if literal values can be overwritten.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.AllowPromptAsInputProperty">
            <summary>Identifies the  AllowPromptAsInput dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.ClipboardMaskFormatProperty">
            <summary>Identifies the  ClipboardMaskFormat dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.HidePromptOnLeaveProperty">
            <summary>Identifies the  HidePromptOnLeave dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.IncludeLiteralsInValueProperty">
            <summary>Identifies the  IncludeLiteralsInValue dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.InsertKeyModeProperty">
            <summary>Identifies the  InsertKeyMode dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.IsMaskCompletedProperty">
            <summary>Identifies the  IsMaskCompleted dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.IsMaskFullProperty">
            <summary>Identifies the  IsMaskFull dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.MaskProperty">
            <summary>Identifies the Mask dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.PromptCharProperty">
            <summary>Identifies the  PromptChar dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.RejectInputOnFirstFailureProperty">
            <summary>Identifies the  RejectInputOnFirstFailure dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.ResetOnPromptProperty">
            <summary>Identifies the  ResetOnPrompt dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.ResetOnSpaceProperty">
            <summary>Identifies the  ResetOnSpace dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.RestrictToAsciiProperty">
            <summary>Identifies the  RestrictToAscii dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.MaskedTextBox.SkipLiteralsProperty">
            <summary>Identifies the  SkipLiterals dependency property.</summary>
        </member>
        <member name="E:Xceed.Wpf.Controls.MaskedTextBox.AutoCompletingMask">
            <summary>Raised when a mask is being automatically created.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.NavigableComboBox">
            <summary>Represents a combo box control that supports navigation within its drop-down section.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.NavigableComboBox.#ctor">
            <summary>Initializes a new instance of the NavigableComboBox class.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.NavigableComboBox.OnPreviewKeyDown(System.Windows.Input.KeyEventArgs)">
            <summary>Invoked when an unhandled PreviewKeyDown attached event reaches this element in its route.</summary>
            <param name="e">A KeyEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.NavigableComboBox.OnPreviewMouseWheel(System.Windows.Input.MouseWheelEventArgs)">
            <summary>Invoked when an unhandled PreviewMouseWheel attached event reaches this element in its route.</summary>
            <param name="e">A MouseWheelEventArgs that contains the event data.</param>
        </member>
        <member name="T:Xceed.Wpf.Controls.NumericInputScope">
            <summary>    Represents an element which filters input that is not     numerical. The NumericInputscope class will     prevent modifications from being applied until the focus is     removed from the scope.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.NumericInputScope.OnPreviewKeyDown(System.Windows.Input.KeyEventArgs)">
            <summary>Invoked when an unhandled PreviewKeyDown attached event reaches this element in its route.</summary>
            <param name="e">A KeyEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.NumericInputScope.OnPreviewTextInput(System.Windows.Input.TextCompositionEventArgs)">
            <summary>Invoked when an unhandled PreviewTextInput attached event reaches this element in its route.</summary>
            <param name="e">A TextCompositionEventArgs that contains the event data.</param>
        </member>
        <member name="T:Xceed.Wpf.Controls.NumericTextBox">
            <summary>Represents a control that limits the value extracted from the inputted text to be a numeric value.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.NumericTextBox.OnInitialized(System.EventArgs)">
            <summary>Raises the Initialized event.</summary>
            <param name="e">An EventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.NumericTextBox.OnTextInput(System.Windows.Input.TextCompositionEventArgs)">
            <summary>Called when an unhandled TextInput event reaches this element.</summary>
            <param name="e">A TextCompositionEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.NumericTextBox.QueryTextFromValueCore(System.Object)">
            <summary>    Queries the specified value and returns its     string representation.</summary>
            <param name="value">    An object representing the value whose string     representation is to be returned.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.NumericTextBox.QueryValueFromTextCore(System.String,System.Object@)">
            <summary>    Queries the specified text and returns its     corresponding value converted to the type specified by     the      ValueDataType property and according to the format defined     by the      FormatSpecifier property.</summary>
            <returns>true if a value was extracted from the specified text; false otherwise.</returns>
            <param name="text">A string representing the text to be converted.</param>
            <param name="value">    The converted value. Can be $$NULL$$ if a value could not     be extracted from text.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.NumericTextBox.NumberStyles">
            <summary>Gets or sets a value indicating the number styles that are supported by the numeric text box.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.NumericTextBox.NumberStylesProperty">
            <summary>Identifies the  NumberStyles dependency property.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.QueryMoveFocusEventArgs">
            <summary>Provides information on the focus navigation.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.QueryMoveFocusEventArgs.CanMoveFocus">
            <summary>Gets or sets a value indicating if the focus can move.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.QueryMoveFocusEventArgs.FocusNavigationDirection">
            <summary>Gets a value indicating the direction in which the focus is attempting to navigate.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.QueryMoveFocusEventArgs.ReachedMaxLength">
            <summary>Gets a value indicating if the maximum allowed length of text has been reached.</summary>
            <remarks>This property corresponds to the MaxLength property of the AutoSelectTextBox.</remarks>
        </member>
        <member name="T:Xceed.Wpf.Controls.QueryTextFromValueEventArgs">
            <summary>Provides information about the value and text being queried when an attempt is made to convert the specified value into its string representation.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.QueryTextFromValueEventArgs.#ctor(System.Object,System.String)">
            <summary>Initializes a new instance of the QueryTextFromValueEventArgs class specifying the value whose string representation is to be extracted.</summary>
            <param name="value">An object representing the value whose string representation is to be extracted.</param>
            <param name="text">The string representation of value.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.QueryTextFromValueEventArgs.Text">
            <summary>Gets or sets the string representation of the specified value.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.QueryTextFromValueEventArgs.Value">
            <summary>Gets an object representing the value whose string representation is to be extracted.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.QueryValueFromTextEventArgs">
            <summary>Provides information about the text and value being queried when an attempt is made to extract a value from the specified text.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.QueryValueFromTextEventArgs.#ctor(System.String,System.Object)">
            <summary>Initializes a new instance of the QueryValueFromTextEventArgs class specifying the text from which a value is to be extracted.</summary>
            <param name="text">A string representing the text to be converted.</param>
            <param name="value">The converted value. Can be $$NULL$$ if a value could not be extracted from text.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.QueryValueFromTextEventArgs.HasParsingError">
            <summary>Gets or sets a value indicating a value was successfully extracted from the specified text.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.QueryValueFromTextEventArgs.Text">
            <summary>Gets the text to be converted.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.QueryValueFromTextEventArgs.Value">
            <summary>Gets or sets the converted value.</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.ValueRangeTextBox">
            <summary>Represents a control that limits the value extracted from the inputted text to be within the bounds determined by the  MinValue and  MaxValue properties.</summary>
        </member>
        <member name="M:Xceed.Wpf.Controls.ValueRangeTextBox.OnGotFocus(System.Windows.RoutedEventArgs)">
            <summary>Called when an unhandled GotFocus event reaches this element.</summary>
            <param name="e">A RoutedEventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.ValueRangeTextBox.OnInitialized(System.EventArgs)">
            <summary>Raises the Initialized event.</summary>
            <param name="e">An EventArgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.ValueRangeTextBox.OnLostFocus(System.Windows.RoutedEventArgs)">
            <summary>Raises the LostFocus event.</summary>
            <param name="e">A RoutedEventAgs that contains the event data.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.ValueRangeTextBox.QueryTextFromValueCore(System.Object)">
            <summary>Queries the specified value and returns its string representation.</summary>
            <param name="value">An object representing the value whose string representation is to be returned.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.ValueRangeTextBox.QueryValueFromTextCore(System.String,System.Object@)">
            <summary>Queries the specified text and returns its corresponding value converted to the type specified by the  ValueDataType property and according to the format defined by the  FormatSpecifier property.</summary>
            <returns>true if a value was extracted from the specified text; false otherwise.</returns>
            <param name="text">A string representing the text to be converted.</param>
            <param name="value">The converted value. Can be $$NULL$$ if a value could not be extracted from text.</param>
        </member>
        <member name="M:Xceed.Wpf.Controls.ValueRangeTextBox.ValidateValue(System.Object)">
            <summary>Validates the specified value to ensure that it is of the type specified by the  ValueDataType property and that it is greater than or equal to  MinValue and less than or equal to  MaxValue.</summary>
            <param name="value">The value to validate.</param>
        </member>
        <member name="P:Xceed.Wpf.Controls.ValueRangeTextBox.BeepOnError">
            <summary>Gets or sets a value indicating if a system beep is raised when an inputted character is rejected.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.ValueRangeTextBox.FormatProvider">
            <summary>Gets or sets the IFormatProvider that will be used to perform type validation.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.ValueRangeTextBox.HasParsingError">
            <summary>Gets a value indicating that an error occurred while parsing the inputted text.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.ValueRangeTextBox.MaxValue">
            <summary>Gets or sets the maximum accepted value.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.ValueRangeTextBox.MinValue">
            <summary>Gets or sets the minimum accepted value.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.ValueRangeTextBox.NullValue">
            <summary>Gets or sets a value representing the control's null value.</summary>
        </member>
        <member name="P:Xceed.Wpf.Controls.ValueRangeTextBox.Value">
            <summary>Gets or sets the control's value.</summary>
            <remarks>The control's value should be greater than or equal to  MinValue and less than or equal to  MaxValue and must also be of the type specified by the  ValueDataType property.</remarks>
        </member>
        <member name="P:Xceed.Wpf.Controls.ValueRangeTextBox.ValueDataType">
            <summary>Gets or sets the type of the control's  value.</summary>
            <remarks>If the ValueDataType property is not set, the inputted text will not be validated. The ValueDataType property does not need to be set if the editors are used as a cell editors within a grid.</remarks>
        </member>
        <member name="F:Xceed.Wpf.Controls.ValueRangeTextBox.BeepOnErrorProperty">
            <summary>Identifies the  BeepOnError dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.ValueRangeTextBox.FormatProviderProperty">
            <summary>Identifies the  FormatProvider dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.ValueRangeTextBox.HasParsingErrorProperty">
            <summary>Identifies the  HasParsingError dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.ValueRangeTextBox.MaxValueProperty">
            <summary>Identifies the  MaxValue dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.ValueRangeTextBox.MinValueProperty">
            <summary>Identifies the  MinValue dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.ValueRangeTextBox.NullValueProperty">
            <summary>Identifies the  NullValue dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.ValueRangeTextBox.ValueDataTypeProperty">
            <summary>Identifies the  ValueDataType dependency property.</summary>
        </member>
        <member name="F:Xceed.Wpf.Controls.ValueRangeTextBox.ValueProperty">
            <summary>Identifies the  Value dependency property.</summary>
        </member>
        <member name="E:Xceed.Wpf.Controls.ValueRangeTextBox.QueryTextFromValue">
            <summary>Raised when a value is being queried to return its string representation.</summary>
        </member>
        <member name="E:Xceed.Wpf.Controls.ValueRangeTextBox.QueryValueFromText">
            <summary>Raised when inputted text is queried to return its corresponding value</summary>
        </member>
        <member name="T:Xceed.Wpf.Controls.QueryMoveFocusEventHandler">
            <summary>Represents the method that will handle the  QueryMoveFocus routed event.</summary>
            <param name="sender">The source of the event.</param>
            <param name="e">A QueryMoveFocusEventArgs that contains the event data.</param>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader PracticePRO Software Systems Inc
United States United States
In my childhood, my uncle has shown me how to see the cloud in a close look and I understand that one can draw some elements of the Earth in the sky-canvas if he/she wants to. After that the cloud becomes closer to me and It teaches me one thing that, a deeper-look to something will give you some clues to draw your imagination. You can able to see that one which you have build-up in your mind.

Years past, I have started my career as a software engineer and has been looking for passion in my coding and development which I should be to enjoy my profession and has started asking myself- 'am I doing any engineering here?!' Is my code becoming that thing which I have designed in my mind? So to find that answer I have tried that old solution here... I have decided to come closer to my code and start analyzing them. And it is really working for me and at least it gives me the confidence that I can build something that I really want to. I can draw my thinking there through my code and can build-up my vision that I have designed in my mind. It also helps me to think out of the box, solve each problems by making blocks and make me careful on each steps.

• Morshed's Technical Blog site: http://morshedanwar.wordpress.com/

• Morshed's Technical articles those are published in Codeproject site: http://www.codeproject.com/script/Articles/MemberArticles.aspx?amid=2992452

• Morshed's Linkedin profile: http://www.linkedin.com/in/morshedanwar

• Morshed's Facebook Profile : http://www.facebook.com/morshed.pulok

Beside all these I like to do - photography and music. Here is my Flickr photos : http://www.flickr.com/photos/morshed_anwar/

Comments and Discussions