Trying to build a marquee control with smooth text animation. Current efforts include:
Hope this may help you - http://jobijoy.blogspot.com/2008/08/silverlight-marquee-control.html
And the WPF version also can be found here
If you are using WPF 4.0, try setting the CacheMode="BitmapCache"
(in the XAML) on the element you are animating, in this case, probably a TextBlock
.
Your animation will be handled entirely at the MilCore layer if:
Try using a DoubleAnimation-animated TranslateTransform for a RenderTransform on a TextBlock that is a direct child of a Window with default settings.
If this is still slow, there is something slow about your Direct3D system because managed code is not involved at all and MilCore's calls are very simple, but
If it works smoothly and efficiently, incrementally change it to your poorly-performing code to see what change causes the slowdown.
Given your response to Jobi Joy's answer I would suspect the problem is somewhere in your hardware or Direct3D setup, but the only way to find out is to test it.