Click here to Skip to main content
6,594,088 members and growing! (16,746 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » Windows Presentation Foundation » General     Intermediate License: The Code Project Open License (CPOL)

WPF Diagram Designer - Part 4

By sukram

A Frankenbuild
C# (C# 3.0), .NET (.NET 3.5), WPF, Dev, Design
Posted:26 Mar 2008
Views:87,789
Bookmarked:164 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
83 votes for this article.
Popularity: 9.25 Rating: 4.82 out of 5
1 vote, 1.3%
1
1 vote, 1.3%
2
1 vote, 1.3%
3
3 votes, 3.9%
4
70 votes, 92.1%
5
WPF FlowChart Designer
  • Part 1 - Drag, resize and rotate items on a canvas
  • Part 2 - Toolbox, drag & drop, rubberband selection
  • Part 3 - Connecting items

Introduction

In this article, I have added the following commands:

  • Open, Save
  • Cut, Copy, Paste, Delete
  • Print
  • Group, Ungroup
  • Align (Left, Right, Top, Bottom, Centered horizontal, Centered vertical)
  • Distribute (horizontal, vertical)
  • Order (Bring forward, Bring to top, Send backward, Send to back)

Note: I will only support Visual Studio 8.0 on .NET 3.5 !

Commands

The way I use WPF commands is straight forward, as described in the WPF SDK documentation, no extra infrastructure.

Grouping

My first approach to group items was to use a DesignerItem object that should work as a group container. For this, I created a new instance of the DesignerItem class with a Canvas object as its content. On this canvas, I planned to position the designer items to be grouped. But before I could put the items on the group canvas, I had to remove them from the designer canvas because in WPF an element cannot be a child of two elements. If you try, you will get an InvalidOperationException with the following message:

"Specified element is already the logical child of another element. 
Disconnect it first."

So I removed the items from the designer canvas and put them on the group canvas. Now it is interesting to understand what WPF did behind the scenes: as soon as I removed an item from the designer canvas, its template was unloaded and when I added it to the group canvas, a new template was loaded. Now do you remember the last article where I showed you how to connect designer items? There I connected items via connectors, connectors that were part of the designer item's template, a template that is lost as soon as I remove the item from the designer canvas. You see the problem? I have connected designer items via their templates and so the designer item itself has absolutely no information about existing connections. All connection related information is isolated in the designer item's template.

Imagine a database diagram where the designer item's content is a database table. The table would never recognize any relation to other tables. One solution would be to tunnel the information from the template to the designer item to the table. A better solution is to redesign the application and divide the whole bulk into separate parts, e.g.

  • Template (view)
  • Designer item (view model)
  • Database table (model)

I will not start redesigning this code in the midst of an article, instead I will ride this 'view-only-approach' until the end of this article. The more painful this ride is, the more welcome a better solution will be. (I will cover a model backed designer in a future article.)

So let's continue. An alternative approach to group designer items uses the following interface:

 public interface IGroupable 
 { 
     Guid ID { get; } 
     Guid ParentID { get; set; } 
     bool IsGroup { get; set; } 
 }

The idea is that the DesignerItem class has to implement this interface to become part of the grouping infrastructure, which works like this:

  • Create a new DesignerItem object with a unique ID and with its IsGroup property set to true
  • For each group member, set the ParentID to the ID of the group parent.

This is simple, but the real work happens when I modify items (Select, Move, Resize, Copy, ...); with each of these operations I have to consider an item's group status. Sounds like a lot of work, but it's not as painful as it would be without LINQ. For this, I have wrapped most of the work into the SelectionService class.

Note: The Connection class does not implement the IGroupable interface and so cannot directly be part of a group, but indirectly - since a connection is always attached to an item. This gives me the flexibility to re/connect items, no matter if they are members of a group or not.

Save

To save a diagram, I have chosen to use a combination of XML and XAML. For the DesignerItem related data I use XML, and the content is serialized to XAML. Here again, please note that serializing a designer item's content to XAML only preserves the visual aspects and thus is used as a short term solution only. To create the XML file, I use LINQ. Since this is the first time I experiment with LINQ, don't expect it to be necessarily the "right" way to use it.

Here is an example of how I serialize designer items:

 XElement serializedItems = new XElement("DesignerItems",
                          from item in designerItems
                          let contentXaml = XamlWriter.Save(((DesignerItem)item).Content)
                          select new XElement("DesignerItem",
                                      new XElement("Left", Canvas.GetLeft(item)),
                                      new XElement("Top", Canvas.GetTop(item)),
                                      new XElement("Width", item.Width),
                                      new XElement("Height", item.Height),
                                      new XElement("ID", item.ID),
                                      new XElement("zIndex", Canvas.GetZIndex(item)),
                                      new XElement("IsGroup", item.IsGroup),
                                      new XElement("ParentID", item.ParentID),
                                      new XElement("Content", contentXaml)
                                      )
                           );

The let keyword allows you to store the result of a sub-expression in a variable that can be used in a subsequent expression. Here I use this feature to save the serialized content in the contentXaml variable, which I use a few lines below. Finally, I use the Save method of the XElement class to store the element's underlying XML tree:

 XElement.Save(fileName)

Open

When loading a diagram from an XML file, we have to start with the designer items because we need their connectors to create connections. We have learned that connectors are part of the item's template, so the designer item has to load its template before we can continue. Fortunately the Control class provides the ApplyTemplate() method which forces the WPF layout system to load the control template so that its parts can be referenced.

In the previous article, I provided a mechanism to customize the ConnectorDecorator template, which allows you to freely position connectors around a designer item. That solution did apply the customized template after the designer item's Loaded event was fired and that event is not fired before the item becomes visible on your screen. Now the screen cannot be redrawn before the command has ended. So the only way is to set the customized ConnectorDecorator template explicitly within the Open command, see the SetConnectorDecoratorTemplate(item) method.

Note: When defining customized connectors, you must set the x:Name property. A connection uses the name to identify its source and sink connectors.

 <s:Connector x:Name="Left" Orientation="Left" 
    VerticalAlignment="Center" HorizontalAlignment="Left"/>

Copy, Paste, Delete, Cut

The Copy and Paste commands work analogous to the Open and Save commands, except that they are applied only to the selected items and that they read and write the serialized content to the Clipboard. The Delete command simply removes all selected items from the designer canvas' Children collection, and the Cut command finally is a combination of Copy and Delete command.

Align, Distribute

Not much to say about these commands, except that the reference item for alignment is the item that was selected at first (also called primary selection). This works only when you select items with the LeftMouseButton + Ctrl, or LeftMouseButton + Shift, but not if you use rubberband selection.

Order

The Panel class (from which Canvas is derived) provides an attached property named ZIndex that defines the order on the z-plane in which the children appear, so we only have to change that property to bring an item forward or backward.

History

  • 25th March, 2008 -- Original version submitted

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

sukram


Member

Location: Austria Austria

Other popular Windows Presentation Foundation articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 157 (Total in Forum: 157) (Refresh)FirstPrevNext
GeneralDelete Key on a Connection Pinmembercaldrak@gmail.com6:02 27 Oct '09  
GeneralThumb inside a Thumb Pinmemberfernubio10:24 20 Oct '09  
GeneralWPF VB.NET code - Need help PinmemberMember 41137934:56 27 Jul '09  
GeneralSilverlight flowchart PinmemberMadhuribala2:17 20 Jul '09  
GeneralConnector title PinmemberMorales_016:19 13 Jul '09  
GeneralRe: Connector title Pinmemberniveditha 20093:56 2 Nov '09  
GeneralWindow.XAML won't load in VS2008 SP1 Designer (FIX) PinmemberTheArchitectualizer8:00 2 Jul '09  
GeneralPart 5 PinmemberCyberDev0:07 1 Jul '09  
GeneralConnect two node by code Pinmemberale.capu807:10 10 Jun '09  
QuestionProperties for each item PinmemberParalias23:24 11 May '09  
GeneralGet type of designer item and automatically display in canvas PinmemberMember 411379322:41 3 May '09  
GeneralHow to dynamically edit content ? Pinmembercieszak22:47 27 Apr '09  
GeneralWPF Drag and Drop item over arrow splits automatically PinmemberMember 411379319:13 17 Apr '09  
GeneralListView - Connection Pinmemberleo uri4:06 16 Apr '09  
GeneralNeed help in VB.NET PinmemberMember 411379321:05 15 Apr '09  
GeneralRe: Need help in VB.NET Pinmembermachmuel6:18 18 Jun '09  
GeneralAdding an another flowchart item to toolbar in the left Pinmemberasdsdasda12:53 18 Mar '09  
GeneralRe: Adding an another flowchart item to toolbar in the left Pinmembervijayakumarkj7:30 22 Apr '09  
GeneralRegarding Overlap of DesignerItems PinmemberSandeep Srinivas Kulkarni17:22 15 Mar '09  
GeneralSimulo -- a codeplex project that uses that DiagramDesigner [modified] Pinmemberking_rollo8:07 23 Feb '09  
GeneralPerformance so poor it's unusable Pinmemberjsprenkl6:06 13 Feb '09  
GeneralRe: Performance so poor it's unusable Pinmemberdessus11:27 4 Apr '09  
Generalmulitiple designercanvas Pinmembervijayakumarkj1:30 10 Feb '09  
Generallooking forward to the next installment Pinmemberjsprenkl12:15 9 Feb '09  
Generalcreating tab control container Pinmembervijayakumarkj1:29 9 Feb '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 26 Mar 2008
Editor: Deeksha Shenoy
Copyright 2008 by sukram
Everything else Copyright © CodeProject, 1999-2009
Web21 | Advertise on the Code Project