| 12345678910111213141516171819202122232425262728 |
- <UserControl
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:ed="http://schemas.microsoft.com/expression/2010/drawing"
- xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
- xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"
- x:Class="TreeCanvas.TreeCanvasView"
- mc:Ignorable="d"
- d:DesignHeight="600" d:DesignWidth="800">
- <UserControl.CommandBindings>
- <CommandBinding Command="ApplicationCommands.New" Executed="NewNode_Executed" />
- </UserControl.CommandBindings>
- <UserControl.ContextMenu>
- <ContextMenu Name="cm">
- <MenuItem Header="New Node" Command="ApplicationCommands.New"
- CommandTarget="{Binding Path=PlacementTarget, RelativeSource={RelativeSource AncestorType=ContextMenu}}" />
- </ContextMenu>
- </UserControl.ContextMenu>
- <Canvas Background="Transparent" Name="canvasTree">
-
- </Canvas>
-
- </UserControl>
|