Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
25dae72
FirstPass
saintentropy May 5, 2025
5a87ccd
Progress update
saintentropy May 11, 2025
106b8ed
Add Inport triggers and tooltip
saintentropy May 11, 2025
fa31803
Progress Update
saintentropy May 12, 2025
6724c68
Progress on NodeView
saintentropy May 12, 2025
13b986d
Simplify InPorts including lazy load of level spinner
saintentropy May 13, 2025
7ce45f0
Cleanup + Support Code blocks
saintentropy May 13, 2025
e940553
Simplify Ports and verify with Groups
saintentropy May 13, 2025
1d71b38
Add NodeAutoCompleteHover to InPort
saintentropy May 14, 2025
6c6cdd8
Finish node ui
saintentropy May 15, 2025
f87bcf2
fix typo
saintentropy May 15, 2025
24a854d
Merge branch 'master' into CodeOnlyNodeView
saintentropy May 15, 2025
3d96a27
NodeView clean up, comments, and deregister event handlers
saintentropy May 15, 2025
3f79235
Inport cleanup, comments, and deregister events
saintentropy May 16, 2025
e74e8d8
remove BeginInit / EndInit
saintentropy May 16, 2025
b387f0d
Clean up Outport, add comments, deregister events
saintentropy May 16, 2025
3037ffc
Fix test and realing names with old names
saintentropy May 16, 2025
98a6a11
Update api docs
saintentropy May 16, 2025
3136e36
Fix tests
saintentropy May 16, 2025
c84d3e4
Fix API doc
saintentropy May 16, 2025
3bb8e4b
fIx api doc
saintentropy May 16, 2025
bd69474
Add animation style zoom with toggle to simple
saintentropy May 21, 2025
d62d26d
Fix rename tooltip
saintentropy May 21, 2025
1da9765
bug fixes
saintentropy May 22, 2025
06f7c28
Merge branch 'master' of https://github.com/DynamoDS/Dynamo into Code…
zeusongit May 27, 2025
94ab13c
add missing trigger
zeusongit May 27, 2025
3f4bc36
review
zeusongit May 28, 2025
299ee25
adding static constructor back to freeze brush
zeusongit May 28, 2025
56f0d0c
Update DynamoCoreWpf.csproj
zeusongit May 28, 2025
8d08078
Merge branch 'master' of https://github.com/DynamoDS/Dynamo into Code…
zeusongit May 30, 2025
b861d9d
Merge branch 'master' of https://github.com/DynamoDS/Dynamo into Code…
zeusongit Jun 3, 2025
f1913ba
Merge branch 'master' of https://github.com/DynamoDS/Dynamo into Code…
zeusongit Jun 5, 2025
0c717f5
Update NodeViewTests.cs
zeusongit Jun 5, 2025
4fdce39
mark test fail, to be revisited
zeusongit Jun 5, 2025
8a13612
Update NodeViewTests.cs
zeusongit Jun 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/DynamoCoreWpf/Controls/InPorts.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<UserControl x:Class="Dynamo.UI.Controls.InPorts"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:p="clr-namespace:Dynamo.Wpf.Properties"
xmlns:ui="clr-namespace:Dynamo.UI"
mc:Ignorable="d">
</UserControl>
557 changes: 557 additions & 0 deletions src/DynamoCoreWpf/Controls/InPorts.xaml.cs

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions src/DynamoCoreWpf/Controls/OutPorts.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<UserControl x:Class="Dynamo.UI.Controls.OutPorts"
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:local="clr-namespace:Dynamo.Wpf.Controls"
mc:Ignorable="d">
</UserControl>
Loading
Loading