Hello!
I am developing a project using Silverlight TChat component (version 4.1.2010.9282). I have several questions related to the CursorTool:
1. The cursortool moves slowly. When i move cursortool processor usage is about 100 percent on my pc (dual-core Intel CPU 3 GHz). I have attached example code. Using the properties FastCursor not help, since in this case the cursortool is not displayed.
2. How can I change the mouse cursor that displays while the mouse pointer is over cursortool? Now all the time is shown IBeam cursor and i can't change them like that:
cursorTool.Cursor = System.Windows.Input.Cursors.Hand;
Best Regards,
Ernst
CursorTool (Silverlight)
CursorTool (Silverlight)
- Attachments
-
- TeeChartCursorHiLoadTest.zip
- (30.08 KiB) Downloaded 230 times
Re: CursorTool (Silverlight)
Hello Ernst,
I hope will helps.
Thanks,
It is a known problem for us and it is in wish-list with number [TW24015389] to consider inclusion it enhancement for next versions of TeeChartSilverlight.1. The cursortool moves slowly. When i move cursortool processor usage is about 100 percent on my pc (dual-core Intel CPU 3 GHz). I have attached example code. Using the properties FastCursor not help, since in this case the cursortool is not displayed.
You need have property FollowMouse True if you want change the mouse pointer is over cursortool as next lines of code:2. How can I change the mouse cursor that displays while the mouse pointer is over cursortool? Now all the time is shown IBeam cursor and i can't change them like that:
cursorTool.Cursor = System.Windows.Input.Cursors.Hand;
Code: Select all
cursorTool1.FollowMouse = true;
cursorTool1.Style = Steema.TeeChart.Silverlight.Tools.CursorToolStyles.Horizontal;
cursorTool1.OriginalCursor= System.Windows.Input.Cursors.Hand;
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |