Is it possible to set the height of groups (owners) individually or do all owner rows always get resized together and stay the same height?
No, you cannot set the height of any one row individually; the height of all rows is determined by the amount of vertical space available divided by the number of rows.
Is there any option to determine the row height ?
So it is possible to implement a scrollbar but it wil not be used until the user resizes the rowheight?
You could hit test for an OwnerUIElement and determine the height from its Rect property:
UIElement controlElement = this.timeLineView.UIElement;UIElement elementAtPoint = controlElement.ElementFromPoint( e.Location );nsTimeline.OwnerUIElement ownerElement = elementAtPoint != null ? elementAtPoint.GetAncestor( typeof(nsTimeline.OwnerUIElement) ) as nsTimeline.OwnerUIElement : null;
if ( ownerElement != null ){ Rectangle rect = ownerElement.Rect;}
Hi,
MarcelDumi said:I'm not getting the current Owner name when I'm clicking on Ultratimelineviewer
Can you send me the code sample showing a custom appointment dialog? I can't find the "previous post"...
Hi Stolz,
thanks for your msg. At present I don't have code with me.
Thanks