Implemented reading input from the textbox instead of connectors
Some checks failed
Build / build (push) Successful in 34s
CodeQL / Analyze (csharp) (push) Has been cancelled

This commit is contained in:
Ankitkumar Satapara
2026-04-29 19:20:37 +05:30
parent 1463d5b3a8
commit bc373d291e
3 changed files with 80 additions and 10 deletions

View File

@@ -273,7 +273,8 @@
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Title}"
Margin="0 0 5 0" />
<TextBox Text="{Binding Value}"
<TextBox Text="{Binding UserInput, UpdateSourceTrigger=PropertyChanged}"
MinWidth="60"
Visibility="{Binding IsConnected, Converter={shared:BooleanToVisibilityConverter Negate=True}}" />
</StackPanel>
</DataTemplate>