Added IsTabStop="False" and IsReadOnly="True" to Textfields

This commit is contained in:
Ano-sys
2025-02-12 15:20:20 +01:00
parent b10548a8ab
commit 52112a86fd
+8 -2
View File
@@ -36,7 +36,10 @@
Text="SimpleNote - Note"
Background="Transparent"
BorderThickness="0"
FontSize="12">
FontSize="12"
IsTabStop="False"
IsReadOnly="True"
>
</TextBox>
<TextBox x:Name="Note"
Height="20"
@@ -50,7 +53,10 @@
Foreground="White"
Background="Transparent"
IsHitTestVisible="False"
FontSize="{Binding FontSize}">
FontSize="{Binding FontSize}"
IsTabStop="False"
IsReadOnly="True"
>
</TextBox>
</Panel>
</Window>