fluidkit

How can I speed up the animations when using FluidKit?

I've using FluidKit in a WPF application and would like to speed up the animations. SlideTransition slideTransition = Resources["SlideTransition"] as SlideTransition; slideTransition.Direction = Direction.LeftToRight; slideTransition.Duration = new Duration(new System.TimeSpan(1000)); //does not work TransitionContainer.Transition = sli...

WPF Fluidkit ElementFlow, Apply ItemTemplate to individual items.

Hello, I am currently binding an ElementFlow control to an observablecollection of BitmapImages. My elementflows datatemplate is set up to decorate each item with a blue border. However, I was wondering if someone with experience in using FluidKit could advise me on how to set the ItemTemplate of individual BitmapImages based on certai...