Skip to content

Instantly share code, notes, and snippets.

@alexcurtis
Created December 6, 2012 12:12
Show Gist options
  • Save alexcurtis/4224023 to your computer and use it in GitHub Desktop.
Save alexcurtis/4224023 to your computer and use it in GitHub Desktop.
WPF Node Graph Custom Controls
<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