Page Index Toggle Pages: [1] 2 3 4 Send TopicPrint
Very Hot Topic (More than 25 Replies) WPF (Read 46502 times)
JMC
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 3
Joined: Sep 14th, 2007
WPF
Sep 14th, 2007 at 8:15am
Print Post  
Hi,

Just wondering whether there are any more updates on the WPF version of FlowChart.NET?

Do you have any idea on the release date?

Thanks
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #1 - Sep 14th, 2007 at 9:52am
Print Post  
Hi,

The last preview build available is based on the FlowChart.NET 4 API -
https://mindfusion.org/_temp/MindFusion.Diagramming.Wpf.2.zip

We are now updating the WPF version to match the FlowChart.NET 5 object model, and will post a preview version again in a couple of weeks.

Stoyan
  
Back to top
 
IP Logged
 
JMC
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 3
Joined: Sep 14th, 2007
Re: WPF
Reply #2 - Sep 14th, 2007 at 10:50am
Print Post  
Hi,

Thanks for replying - unfortunatly that link doesn't point to anything? There is one without the '.2' suffix - is this the correct one?
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #3 - Sep 14th, 2007 at 11:35am
Print Post  
  
Back to top
 
IP Logged
 
Paul Eden
Full Member
***
Offline



Posts: 128
Joined: Aug 15th, 2007
Re: WPF
Reply #4 - Oct 2nd, 2007 at 10:27am
Print Post  
Without wanting to pester... how's it coming along?
  
Back to top
WWW  
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #5 - Oct 2nd, 2007 at 10:51am
Print Post  
We are now completing the XML serialization functionality and will post another preview build this week, and will try to release a beta version with samples and documentation in the next couple of weeks.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #6 - Oct 5th, 2007 at 10:46am
Print Post  
Here is a new preview version:
https://mindfusion.org/_beta/fc_wpf_pre.zip

It can import XML files created by FlowChart.NET. Next week we are going to port a few sample projects to WPF, and can post them here if anyone is interested.

Hopefully we'll start beta tests this month, and will release the first version in November if there aren't any bugs found.

Stoyan
  
Back to top
 
IP Logged
 
Paul Eden
Full Member
***
Offline



Posts: 128
Joined: Aug 15th, 2007
Re: WPF
Reply #7 - Oct 5th, 2007 at 10:49am
Print Post  
Excellent news!

The samples would be really useful - thanks for all the work you folks are putting in.
  
Back to top
WWW  
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #8 - Oct 5th, 2007 at 12:29pm
Print Post  
Some notes on that last preview build:

- if you need scrolling, add the control to a ScrollViewer
- to clip the drawing to the control's bounds, enable the ClipBounds property; otherwise you will be able to drag the diagram elements all over the form and the other controls

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #9 - Oct 8th, 2007 at 12:09pm
Print Post  
This zip file contains an initial version of the SiteMap sample project and updated dlls:

https://mindfusion.org/_samples/SiteMapWpf.zip

We are having some difficulties displaying a context menu in WPF, so some features of that sample haven't been ported yet. We'd be grateful if someone enlighten us on how to explicitly display a WPF ContextMenu Smiley

Stoyan
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #10 - Oct 8th, 2007 at 12:26pm
Print Post  
We have discovered how to display a ContextMenu. Replacing the commented

cmNode.Show()

line in that sample with

cmNode.Placement = System.Windows.Controls.Primitives.PlacementMode.Mouse;
cmNode.IsOpen = true;

does the trick.

Stoyan
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #11 - Oct 8th, 2007 at 12:37pm
Print Post  
You may notice that the ScrollViewer's scrollbars are disabled. To enable scrolling, set a larger Diagram.Bounds. E.g. change the window constructor to:

Code
Select All
public Window1()
{
	InitializeComponent();

	siteMap.MeasureUnit = GraphicsUnit.Millimeter;
	siteMap.Bounds = new Rect(0, 0, 1000, 1000);

	startNewSite();
}
 



Stoyan
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #12 - Oct 10th, 2007 at 6:18am
Print Post  
Here is another sample ported to WPF:
https://mindfusion.org/_samples/PredShapesWpf.zip

Stoyan
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: WPF
Reply #13 - Oct 11th, 2007 at 6:25am
Print Post  
and another one, along with updated assemblies -
https://mindfusion.org/_samples/RoutingWpf.zip
  
Back to top
 
IP Logged
 
davekolb
YaBB Newbies
*
Offline



Posts: 1
Joined: Oct 15th, 2007
Re: WPF
Reply #14 - Oct 15th, 2007 at 5:28pm
Print Post  
1. What is needed to build a WPF sample solution? Do I need to isntall the WPF beta version? Is VS2005 updated for .NET 3.0 possible to use somehow? I have not been able to open any of the solutions being told they are for a newer version of VS but hesitate to upgrade to VS2008 quite yet?

2. Are you running both VS versions, 2005 and 2008, OK on the same machine? Any suggestions?

Thanks, Dave
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: [1] 2 3 4
Send TopicPrint