mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Data model event node - Renamed to Data Model-Event Value Cycle Data model event node - Added new data model event node that outputs the latest event data Event conditions - Performance improvements
18 lines
1.3 KiB
XML
18 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.DataModelEventCycleNodeCustomView"
|
|
x:DataType="screens:DataModelEventCycleNodeCustomViewModel">
|
|
<dataModelPicker:DataModelPickerButton Classes="condensed"
|
|
DataModelPath="{CompiledBinding DataModelPath}"
|
|
Modules="{CompiledBinding Modules}"
|
|
ShowDataModelValues="{CompiledBinding ShowDataModelValues.Value}"
|
|
ShowFullPath="{CompiledBinding ShowFullPaths.Value}"
|
|
IsEventPicker="True"
|
|
VerticalAlignment="Top"
|
|
MaxWidth="300"/>
|
|
</UserControl> |