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" Text="SimpleNote - Note"
Background="Transparent" Background="Transparent"
BorderThickness="0" BorderThickness="0"
FontSize="12"> FontSize="12"
IsTabStop="False"
IsReadOnly="True"
>
</TextBox> </TextBox>
<TextBox x:Name="Note" <TextBox x:Name="Note"
Height="20" Height="20"
@@ -50,7 +53,10 @@
Foreground="White" Foreground="White"
Background="Transparent" Background="Transparent"
IsHitTestVisible="False" IsHitTestVisible="False"
FontSize="{Binding FontSize}"> FontSize="{Binding FontSize}"
IsTabStop="False"
IsReadOnly="True"
>
</TextBox> </TextBox>
</Panel> </Panel>
</Window> </Window>