DateTimeCollection - SaneDevelopment/WPF-Controls GitHub Wiki
DateTimeCollection
represents a collection of System.DateTime
values.
It is very similar to DoubleCollection
, but supports only comma (,
) as delimiter and format string d-M-yyyy H:m:s
.
Example
Uses as source for Ticks
property of SimpleDateTimeRangeSlider
:
<saneDev:SimpleDateTimeRangeSlider
StartValue="2003-1-1"
EndValue="2010-1-1"
SmallChange="30"
LargeChange="365"
Ticks="1-1-2000 1:0:0, 1-1-2001 1:0:0, 1-1-2002 1:0:0, 1-06-2003 1:0:0, 1-1-2004 1:0:0, 1-1-2008 1:0:0, 1-1-2009 1:0:0, 1-1-2010 1:0:0"
TickPlacement="TopLeft"
TickFrequency="365"
AutoToolTipPlacement="BottomRight"/>