mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Data models - Fixed path registration not registering two paths pointing to the same property twice (fixes data model-reliant node scripts that stop updating)
17 lines
1.3 KiB
XML
17 lines
1.3 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
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:screens="clr-namespace:Artemis.VisualScripting.Nodes.DataModel.Screens"
|
|
xmlns:dataModelPicker="clr-namespace:Artemis.UI.Shared.DataModelPicker;assembly=Artemis.UI.Shared"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="Artemis.VisualScripting.Nodes.DataModel.Screens.DataModelNodeCustomView"
|
|
x:DataType="screens:DataModelNodeCustomViewModel">
|
|
<dataModelPicker:DataModelPickerButton Classes="condensed"
|
|
DataModelPath="{CompiledBinding DataModelPath}"
|
|
Modules="{CompiledBinding Modules}"
|
|
ShowDataModelValues="{CompiledBinding ShowDataModelValues.Value}"
|
|
ShowFullPath="{CompiledBinding ShowFullPaths.Value}"
|
|
FilterTypes="{CompiledBinding NodePinTypes}"
|
|
MaxWidth="300"/>
|
|
</UserControl> |