1 write to ShortDatePattern
mscorlib (1)
system\globalization\datetimeformatinfo.cs (1)
453if (shortDatePattern != null) this.ShortDatePattern = shortDatePattern;
28 references to ShortDatePattern
mscorlib (15)
system\globalization\datetimeformat.cs (1)
811realFormat = dtfi.ShortDatePattern;
system\globalization\datetimeformatinfo.cs (5)
484o = this.ShortDatePattern; 1215generalShortTimePattern = ShortDatePattern + " " + ShortTimePattern; 1231generalLongTimePattern = ShortDatePattern + " " + LongTimePattern; 1255dateTimeOffsetPattern = ShortDatePattern + " " + LongTimePattern; 1871return GetMergedPatterns(this.UnclonedShortDatePatterns, this.ShortDatePattern);
system\globalization\datetimeparse.cs (9)
1543if (!GetYearMonthDayOrder(dtfi.ShortDatePattern, dtfi, out order)) { 1544result.SetFailure(ParseFailureKind.FormatWithParameter, "Format_BadDatePattern", dtfi.ShortDatePattern); 1715if (!GetYearMonthDayOrder(dtfi.ShortDatePattern, dtfi, out order)) { 1716result.SetFailure(ParseFailureKind.FormatWithParameter, "Format_BadDatePattern", dtfi.ShortDatePattern); 1781String pattern = dtfi.ShortDatePattern; 1813if (!GetYearMonthDayOrder(dtfi.ShortDatePattern, dtfi, out order)) { 1814result.SetFailure(ParseFailureKind.FormatWithParameter, "Format_BadDatePattern", dtfi.ShortDatePattern); 2032if (!GetYearMonthDayOrder(dtfi.ShortDatePattern, dtfi, out order)) { 2033result.SetFailure(ParseFailureKind.FormatWithParameter, "Format_BadDatePattern", dtfi.ShortDatePattern);
PresentationFramework (2)
src\Framework\System\Windows\Controls\DatePicker.cs (2)
998return string.Format(CultureInfo.CurrentCulture, d.ToString(dtfi.ShortDatePattern, dtfi)); 1288this._textBox.Watermark = string.Format(CultureInfo.CurrentCulture, SR.Get(SRID.DatePicker_WatermarkText), dtfi.ShortDatePattern.ToString());
System (4)
compmod\system\componentmodel\DateTimeConverter.cs (2)
115format = formatInfo.ShortDatePattern; 118format = formatInfo.ShortDatePattern + " " + formatInfo.ShortTimePattern;
compmod\system\componentmodel\DateTimeOffsetConverter.cs (2)
129format = formatInfo.ShortDatePattern + " zzz"; 134format = formatInfo.ShortDatePattern + " " + formatInfo.ShortTimePattern + " zzz";
System.Web (1)
UI\WebControls\basecomparevalidator.cs (1)
146string shortPattern = info.ShortDatePattern;
System.Web.Mobile (6)
UI\MobileControls\Adapters\ChtmlCalendarAdapter.cs (2)
383currentDateTimeInfo.ShortDatePattern, CultureInfo.CurrentCulture)); 743DateTimeFormatInfo.CurrentInfo.ShortDatePattern;
UI\MobileControls\Adapters\WmlCalendarAdapter.cs (2)
365currentDateTimeInfo.ShortDatePattern, CultureInfo.CurrentCulture)); 720DateTimeFormatInfo.CurrentInfo.ShortDatePattern;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicCalendarAdapter.cs (2)
333currentDateTimeInfo.ShortDatePattern, CultureInfo.CurrentCulture)); 661DateTimeFormatInfo.CurrentInfo.ShortDatePattern;