|
I am not sure which version it is, but I downloaded it on the 9th of jan from this link http://timeline.codeplex.com/ so I think its the latest. Currently I am using Microsoft VS 2010, .net Framework 4.0. I am resizing then loading thumbnails into
the timeline band, for the user interface I would like to only show just the timeline band with the thumbnails. But if I re-size the time line Tray and give it a smaller height, the thumbnail images and the time and dates under the images disappear.
If I can get the TimelineTrayEx to be the same size of the band and its images so it can be embedded easily into the user interface as a timeline of thumbnails with dates.
Maybe Its not a bug and its just because I don't understand how the margin works. It would be nice if you got any tips.
Thanks
Here is the snippet of my main XAML.
<local:TimelineTrayEx
x:Name="timeLine_Camshots"
MinDateTime="01/01/2012"
MaxDateTime="01/01/2013"
CurrentDateTime="1/19/2012"
EditMode="false"
Margin="0,0,1,0" Height="264"
VerticalAlignment="Bottom"
Background="Transparent"
>
<local:TimelineTrayEx.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</local:TimelineTrayEx.RowDefinitions>
<local:TimelineBandEx
IsMainBand="True"
ItemSourceType="seconds" TimelineWindowSize="5"
MaxEventHeight="130"
FontSize="8"
Grid.Row="0"
Margin="2,-16,0,-1" Height="277" Grid.RowSpan="2"
HorizontalAlignment="Left" Width="836" Foreground="{x:Null}" />
</local:TimelineTrayEx>
|