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?
Hi,
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;}
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?
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.