Hello there,
I got a little problem Binding MinHeight and Height of DragResizeSlotHighlightContainer to a Property of a GanttTask.
So for the EventContainer everything works fine, I solved it this way:
<
Style
TargetType
=
"telerik:EventContainer"
BasedOn
=
"{StaticResource EventContainerStyle}"
>
<
Setter
Property
=
"Background"
Value
=
"{Binding OriginalEvent.Background}"
/>
<
Setter
Property
=
"MinHeight"
Value
=
"{Binding OriginalEvent.Height}"
/>
<
Setter
Property
=
"Height"
Value
=
"{Binding OriginalEvent.Height}"
/>
</
Style
>
But for DragResizeSlotHighlightContainer it doesn't work getting OriginalEvent.Height to set MinHeight...
<
Style
TargetType
=
"telerik:DragResizeSlotHighlightContainer"
BasedOn
=
"{StaticResource DragResizeSlotHighlightContainerStyle}"
>
<
Setter
Property
=
"MinHeight"
Value
=
"{Binding OriginalEvent.Height}"
/>
</
Style
>