Class TimeSpanEditor
TimeSpan editor.
public class TimeSpanEditor : UserControl, IAnimatable, IFrameworkInputElement, IInputElement, ISupportInitialize, IQueryAmbient, IAddChild, IComponentConnector
- Inheritance
-
TimeSpanEditor
- Implements
- Inherited Members
- Extension Methods
Constructors
TimeSpanEditor()
Initializes a new instance of the TimeSpanEditor.
public TimeSpanEditor()
Fields
DaysProperty
DependencyProperty for Days.
public static readonly DependencyProperty DaysProperty
Field Value
HasValueProperty
public static readonly DependencyProperty HasValueProperty
Field Value
HoursProperty
DependencyProperty for Hours.
public static readonly DependencyProperty HoursProperty
Field Value
IsNullableProperty
public static readonly DependencyProperty IsNullableProperty
Field Value
MaskProperty
DependencyProperty for Mask.
public static readonly DependencyProperty MaskProperty
Field Value
MaxValueProperty
public static readonly DependencyProperty MaxValueProperty
Field Value
MicrosecondsProperty
public static readonly DependencyProperty MicrosecondsProperty
Field Value
MillisecondsProperty
public static readonly DependencyProperty MillisecondsProperty
Field Value
MinValueProperty
public static readonly DependencyProperty MinValueProperty
Field Value
MinutesProperty
public static readonly DependencyProperty MinutesProperty
Field Value
SecondsProperty
public static readonly DependencyProperty SecondsProperty
Field Value
ValueProperty
DependencyProperty for Value.
public static readonly DependencyProperty ValueProperty
Field Value
Properties
Days
The days value.
public int Days { get; set; }
Property Value
HasValue
Has value.
public bool HasValue { get; set; }
Property Value
Hours
Hours.
public int Hours { get; set; }
Property Value
IsNullable
Is nullable.
public bool IsNullable { get; set; }
Property Value
Mask
Show parts mask.
public TimeSpanEditorMask Mask { get; set; }
Property Value
- TimeSpanEditorMask
MaxValue
Max possible value.
public TimeSpan? MaxValue { get; set; }
Property Value
Microseconds
Microseconds.
public int Microseconds { get; set; }
Property Value
Milliseconds
Milliseconds.
public int Milliseconds { get; set; }
Property Value
MinValue
Min possible value.
public TimeSpan? MinValue { get; set; }
Property Value
Minutes
Minutes.
public int Minutes { get; set; }
Property Value
Seconds
Seconds.
public int Seconds { get; set; }
Property Value
ValidationError
Validation error.
public string ValidationError { get; }
Property Value
Value
The TimeSpan value.
public TimeSpan? Value { get; set; }
Property Value
Methods
InitializeComponent()
InitializeComponent
public void InitializeComponent()
Events
ValueChanged
The Value changed event.
public event Action<TimeSpan?> ValueChanged