Created
December 6, 2012 12:12
-
-
Save alexcurtis/4224023 to your computer and use it in GitHub Desktop.
WPF Node Graph Custom Controls
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:Controls="clr-namespace:WpfNodeGraph.GraphEngine.Controls"> | |
<!-- Node--> | |
<Style TargetType="{x:Type Controls:Node}"> | |
</Style> | |
<!-- Hook--> | |
<Style TargetType="{x:Type Controls:Hook}"> | |
</Style> | |
<!-- Connection--> | |
<Style TargetType="{x:Type Controls:Connection}"> | |
</Style> | |
<!-- Node Graph Canvas--> | |
<Style TargetType="{x:Type Controls:NodeGraph}"> | |
</Style> | |
</ResourceDictionary> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment