Is it possible to have 2 or more timelines hooked up to the movement of only one zoombar?
The Zoombar itself doesn't have labels. The Zoombar has preview area that you need to specify whatever you want to preview. The Timeline creates the labels that you are seeing in its Zoombar.
Hi,
I tried above approach to create a zoombar,but the preview labels are not visible.
Do i need to set any properties to show the labels in the zoombar?
Thanks,
Ashok
You can use the Zoombar to preview something custom with:
<igControls:XamWebZoombar Minimum="0"
Maximum="100"
ZoomChanged="XamWebZoombar_ZoomChanged" ZoomChanging="XamWebZoombar_ZoomChanging">
<igControls:XamWebZoombar.Range>
<igControls:Range Minimum="10" Maximum="20">
</igControls:Range>
</igControls:XamWebZoombar.Range>
<igControls:XamWebZoombar.HorizontalPreviewContent>
<Rectangle Fill="Red" />
</igControls:XamWebZoombar.HorizontalPreviewContent>
</igControls:XamWebZoombar>
The Zoombar works with Minimum and Maximum values. If you want to work with Scale and Scroll, you need to set them with the code after the layout of the control is updated.
I used the above XAML(posted by you on 04-13-2009 4:19 AM ) to display my zoombar. but, i am unable to fetch the zoombar with the above specified code(this is specified by you in this post on 04-08-2009 6:23 AM ) to bind to the Zoomchanged and zoomchanging events.
I want to bind and Zoomchanged and zoomchanging events for the above XAML(posted on 04-13-2009 4:19 AM). Please let me know how to achieve this?
Thanks &Regards
Thank you Teodor. Will provide a demo as soon as I can. Mid May most likely.