6 writes to Value
PresentationUI (3)
MS\Internal\Documents\RequestedSignatureDialog.cs (1)
30_dateTimePicker.Value = DateTime.Now.AddDays(10);
MS\Internal\Documents\RMPublishingDialog.cs (2)
47datePickerValidUntil.Value = DateTime.Today.AddDays(1); 109datePickerValidUntil.Value = localValidUntil;
System.Windows.Forms (3)
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (3)
615Value = _maxDateTime; 671Value = _minDateTime; 833Value = DateTime.Parse(value, CultureInfo.CurrentCulture);
14 references to Value
PresentationUI (2)
MS\Internal\Documents\RequestedSignatureDialog.cs (1)
60_documentSignatureManager.OnAddRequestSignature(sigResources,_dateTimePicker.Value);
MS\Internal\Documents\RMPublishingDialog.cs (1)
170return datePickerValidUntil.Value.ToUniversalTime();
System.Windows.Forms (12)
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (12)
18[DefaultProperty(nameof(Value))] 20[DefaultBindingProperty(nameof(Value))] 327/// Indicates whether the <see cref="Value"/> property has been set. 613if (Value > _maxDateTime) 669if (Value < _minDateTime) 862bool valueChanged = !DateTime.Equals(Value, value); 879nameof(Value), 974SYSTEMTIME systemTime = (SYSTEMTIME)Value; 998_value = Value; 1243/// Resets the <see cref="Value"/> property to its default value. 1415/// Determines if the <see cref="Value"/> property needs to be persisted. 1430public override string ToString() => $"{base.ToString()}, Value: {Value:G}";