├── .gitignore ├── DemoApp ├── App.xaml ├── App.xaml.cs ├── Controls │ ├── Test1.xaml │ └── Test1.xaml.cs ├── DemoApp.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Resources │ ├── ApplicationToolbar.xaml │ ├── Images │ ├── AlignObjectsBottom.png │ ├── AlignObjectsCenteredHorizontal.png │ ├── AlignObjectsCenteredVertical.png │ ├── AlignObjectsLeft.png │ ├── AlignObjectsRight.png │ ├── AlignObjectsTop.png │ ├── BringForward.png │ ├── BringToFront.png │ ├── Copy.png │ ├── Cut.png │ ├── Delete.png │ ├── DistributeObjectsHorizontal.png │ ├── DistributeObjectsVertical.png │ ├── GenericDocument.png │ ├── Group.png │ ├── OpenFolder.png │ ├── Paste.png │ ├── PasteBig.png │ ├── Print.png │ ├── Redo.png │ ├── Save.png │ ├── SendBackward.png │ ├── SendToBack.png │ ├── Undo.png │ └── Ungroup.png │ ├── Shared.xaml │ ├── Stencils │ └── FlowChartStencils.xaml │ └── ToolBar.xaml ├── DiagramDesigner.sln ├── DiagramDesigner ├── Behaviors │ └── DragDropBehavior.cs ├── Connection.cs ├── ConnectionAdorner.cs ├── Connector.cs ├── ConnectorAdorner.cs ├── Controls │ ├── ArrowPath.cs │ ├── DragThumb.cs │ ├── RelativePositionPanel.cs │ └── ResizeThumb.cs ├── DesignerCanvas.Commands.cs ├── DesignerCanvas.cs ├── DesignerItem.cs ├── DiagramDesigner.csproj ├── IGroupable.cs ├── ISelectable.cs ├── IUndoState.cs ├── IUndoable.cs ├── IZIndex.cs ├── MovementViewModel.cs ├── PathFinder │ ├── IPathFinder.cs │ ├── OrthogonalPathFinder.cs │ ├── OrthogonalPathFinderWithoutMargin.cs │ ├── PathFinderHelper.cs │ ├── PathFinderTypes.cs │ └── StraightPathFinder.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Connection.xaml │ ├── DesignerItem.xaml │ ├── Images │ │ ├── AlignObjectsBottom.png │ │ ├── AlignObjectsCenteredHorizontal.png │ │ ├── AlignObjectsCenteredVertical.png │ │ ├── AlignObjectsLeft.png │ │ ├── AlignObjectsRight.png │ │ ├── AlignObjectsTop.png │ │ ├── BringForward.png │ │ ├── BringToFront.png │ │ ├── Copy.png │ │ ├── Cut.png │ │ ├── Delete.png │ │ ├── DistributeObjectsHorizontal.png │ │ ├── DistributeObjectsVertical.png │ │ ├── GenericDocument.png │ │ ├── Group.png │ │ ├── OpenFolder.png │ │ ├── Paste.png │ │ ├── PasteBig.png │ │ ├── Print.png │ │ ├── Save.png │ │ ├── SendBackward.png │ │ ├── SendToBack.png │ │ └── Ungroup.png │ ├── Styles │ │ ├── Brushes.xaml │ │ ├── Expander.xaml │ │ ├── GroupBox.xaml │ │ ├── ScrollBar.xaml │ │ ├── Shared.xaml │ │ └── Slider.xaml │ ├── Toolbox.xaml │ ├── ToolboxItem.xaml │ └── ZoomBox.xaml ├── RubberbandAdorner.cs ├── SelectionService.cs ├── Themes │ └── Generic.xaml ├── Toolbox.cs ├── ToolboxItem.cs ├── UndoState.cs ├── Undoable.cs ├── ZoomBox.cs └── packages.config ├── LICENSE.md ├── README.md └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/.gitignore -------------------------------------------------------------------------------- /DemoApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/App.xaml -------------------------------------------------------------------------------- /DemoApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/App.xaml.cs -------------------------------------------------------------------------------- /DemoApp/Controls/Test1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Controls/Test1.xaml -------------------------------------------------------------------------------- /DemoApp/Controls/Test1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Controls/Test1.xaml.cs -------------------------------------------------------------------------------- /DemoApp/DemoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/DemoApp.csproj -------------------------------------------------------------------------------- /DemoApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/MainWindow.xaml -------------------------------------------------------------------------------- /DemoApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /DemoApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DemoApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DemoApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Properties/Resources.resx -------------------------------------------------------------------------------- /DemoApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DemoApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Properties/Settings.settings -------------------------------------------------------------------------------- /DemoApp/Resources/ApplicationToolbar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/ApplicationToolbar.xaml -------------------------------------------------------------------------------- /DemoApp/Resources/Images/AlignObjectsBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/AlignObjectsBottom.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/AlignObjectsCenteredHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/AlignObjectsCenteredHorizontal.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/AlignObjectsCenteredVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/AlignObjectsCenteredVertical.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/AlignObjectsLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/AlignObjectsLeft.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/AlignObjectsRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/AlignObjectsRight.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/AlignObjectsTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/AlignObjectsTop.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/BringForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/BringForward.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/BringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/BringToFront.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Copy.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Cut.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Delete.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/DistributeObjectsHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/DistributeObjectsHorizontal.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/DistributeObjectsVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/DistributeObjectsVertical.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/GenericDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/GenericDocument.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Group.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/OpenFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/OpenFolder.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Paste.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/PasteBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/PasteBig.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Print.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Redo.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Save.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/SendBackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/SendBackward.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/SendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/SendToBack.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Undo.png -------------------------------------------------------------------------------- /DemoApp/Resources/Images/Ungroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Images/Ungroup.png -------------------------------------------------------------------------------- /DemoApp/Resources/Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Shared.xaml -------------------------------------------------------------------------------- /DemoApp/Resources/Stencils/FlowChartStencils.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/Stencils/FlowChartStencils.xaml -------------------------------------------------------------------------------- /DemoApp/Resources/ToolBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DemoApp/Resources/ToolBar.xaml -------------------------------------------------------------------------------- /DiagramDesigner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner.sln -------------------------------------------------------------------------------- /DiagramDesigner/Behaviors/DragDropBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Behaviors/DragDropBehavior.cs -------------------------------------------------------------------------------- /DiagramDesigner/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Connection.cs -------------------------------------------------------------------------------- /DiagramDesigner/ConnectionAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/ConnectionAdorner.cs -------------------------------------------------------------------------------- /DiagramDesigner/Connector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Connector.cs -------------------------------------------------------------------------------- /DiagramDesigner/ConnectorAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/ConnectorAdorner.cs -------------------------------------------------------------------------------- /DiagramDesigner/Controls/ArrowPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Controls/ArrowPath.cs -------------------------------------------------------------------------------- /DiagramDesigner/Controls/DragThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Controls/DragThumb.cs -------------------------------------------------------------------------------- /DiagramDesigner/Controls/RelativePositionPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Controls/RelativePositionPanel.cs -------------------------------------------------------------------------------- /DiagramDesigner/Controls/ResizeThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Controls/ResizeThumb.cs -------------------------------------------------------------------------------- /DiagramDesigner/DesignerCanvas.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/DesignerCanvas.Commands.cs -------------------------------------------------------------------------------- /DiagramDesigner/DesignerCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/DesignerCanvas.cs -------------------------------------------------------------------------------- /DiagramDesigner/DesignerItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/DesignerItem.cs -------------------------------------------------------------------------------- /DiagramDesigner/DiagramDesigner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/DiagramDesigner.csproj -------------------------------------------------------------------------------- /DiagramDesigner/IGroupable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/IGroupable.cs -------------------------------------------------------------------------------- /DiagramDesigner/ISelectable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/ISelectable.cs -------------------------------------------------------------------------------- /DiagramDesigner/IUndoState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/IUndoState.cs -------------------------------------------------------------------------------- /DiagramDesigner/IUndoable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/IUndoable.cs -------------------------------------------------------------------------------- /DiagramDesigner/IZIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/IZIndex.cs -------------------------------------------------------------------------------- /DiagramDesigner/MovementViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/MovementViewModel.cs -------------------------------------------------------------------------------- /DiagramDesigner/PathFinder/IPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/PathFinder/IPathFinder.cs -------------------------------------------------------------------------------- /DiagramDesigner/PathFinder/OrthogonalPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/PathFinder/OrthogonalPathFinder.cs -------------------------------------------------------------------------------- /DiagramDesigner/PathFinder/OrthogonalPathFinderWithoutMargin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/PathFinder/OrthogonalPathFinderWithoutMargin.cs -------------------------------------------------------------------------------- /DiagramDesigner/PathFinder/PathFinderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/PathFinder/PathFinderHelper.cs -------------------------------------------------------------------------------- /DiagramDesigner/PathFinder/PathFinderTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/PathFinder/PathFinderTypes.cs -------------------------------------------------------------------------------- /DiagramDesigner/PathFinder/StraightPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/PathFinder/StraightPathFinder.cs -------------------------------------------------------------------------------- /DiagramDesigner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DiagramDesigner/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DiagramDesigner/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Properties/Resources.resx -------------------------------------------------------------------------------- /DiagramDesigner/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DiagramDesigner/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Properties/Settings.settings -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Connection.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Connection.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/DesignerItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/DesignerItem.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/AlignObjectsBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/AlignObjectsBottom.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/AlignObjectsCenteredHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/AlignObjectsCenteredHorizontal.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/AlignObjectsCenteredVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/AlignObjectsCenteredVertical.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/AlignObjectsLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/AlignObjectsLeft.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/AlignObjectsRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/AlignObjectsRight.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/AlignObjectsTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/AlignObjectsTop.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/BringForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/BringForward.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/BringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/BringToFront.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/Copy.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/Cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/Cut.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/Delete.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/DistributeObjectsHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/DistributeObjectsHorizontal.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/DistributeObjectsVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/DistributeObjectsVertical.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/GenericDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/GenericDocument.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/Group.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/OpenFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/OpenFolder.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/Paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/Paste.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/PasteBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/PasteBig.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/Print.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/Save.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/SendBackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/SendBackward.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/SendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/SendToBack.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Images/Ungroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Images/Ungroup.png -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Styles/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Styles/Brushes.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Styles/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Styles/Expander.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Styles/GroupBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Styles/GroupBox.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Styles/ScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Styles/ScrollBar.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Styles/Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Styles/Shared.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Styles/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Styles/Slider.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/Toolbox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/Toolbox.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/ToolboxItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/ToolboxItem.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Resources/ZoomBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Resources/ZoomBox.xaml -------------------------------------------------------------------------------- /DiagramDesigner/RubberbandAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/RubberbandAdorner.cs -------------------------------------------------------------------------------- /DiagramDesigner/SelectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/SelectionService.cs -------------------------------------------------------------------------------- /DiagramDesigner/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Themes/Generic.xaml -------------------------------------------------------------------------------- /DiagramDesigner/Toolbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Toolbox.cs -------------------------------------------------------------------------------- /DiagramDesigner/ToolboxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/ToolboxItem.cs -------------------------------------------------------------------------------- /DiagramDesigner/UndoState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/UndoState.cs -------------------------------------------------------------------------------- /DiagramDesigner/Undoable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/Undoable.cs -------------------------------------------------------------------------------- /DiagramDesigner/ZoomBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/ZoomBox.cs -------------------------------------------------------------------------------- /DiagramDesigner/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/DiagramDesigner/packages.config -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogibear9988/DiagrammDesigner/HEAD/appveyor.yml --------------------------------------------------------------------------------