Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Windows Phone 7 (Read 999 times)
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Windows Phone 7
Sep 23rd, 2010 at 1:49pm
Print Post  
We have created the first DiagramLite build compatible with Silverlight for Windows Phone 7. It will be included in the 1.8 release in a few weeks. If anyone considers porting your project to WinPho7, please give this version a try:
https://mindfusion.eu/_beta/diaglite.winpho7.zip

It contains all the standard Diagramlite features except printing and browser integration (DiagramHost class and JavaScript events).

The WinPho7 ScrollViewer interferes with the diagram's itneractive drawing functionality. If items must be drawn interactively, handle the following event to prevent scrolling:

Code
Select All
private void ScrollViewer_ManipulationStarted(object sender, ManipulationStartedEventArgs e)
{
	e.Complete();
} 

  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint