mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
[Settings > PT Run > Plugin settings] Disable spell check in text boxes (#37744)
Add SpellCheck property in xaml
This commit is contained in:
@@ -88,6 +88,7 @@
|
|||||||
<TextBox
|
<TextBox
|
||||||
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
||||||
MaxWidth="450"
|
MaxWidth="450"
|
||||||
|
IsSpellCheckEnabled="False"
|
||||||
MaxLength="{x:Bind TextBoxMaxLength, Mode=OneWay}"
|
MaxLength="{x:Bind TextBoxMaxLength, Mode=OneWay}"
|
||||||
PlaceholderText="{x:Bind Path=PlaceholderText}"
|
PlaceholderText="{x:Bind Path=PlaceholderText}"
|
||||||
Text="{x:Bind TextValue, Mode=TwoWay}" />
|
Text="{x:Bind TextValue, Mode=TwoWay}" />
|
||||||
@@ -135,6 +136,7 @@
|
|||||||
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
||||||
MinHeight="160"
|
MinHeight="160"
|
||||||
AcceptsReturn="True"
|
AcceptsReturn="True"
|
||||||
|
IsSpellCheckEnabled="False"
|
||||||
PlaceholderText="{x:Bind Path=PlaceholderText}"
|
PlaceholderText="{x:Bind Path=PlaceholderText}"
|
||||||
ScrollViewer.IsVerticalRailEnabled="True"
|
ScrollViewer.IsVerticalRailEnabled="True"
|
||||||
ScrollViewer.VerticalScrollBarVisibility="Visible"
|
ScrollViewer.VerticalScrollBarVisibility="Visible"
|
||||||
@@ -209,6 +211,7 @@
|
|||||||
<TextBox
|
<TextBox
|
||||||
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
||||||
MaxWidth="450"
|
MaxWidth="450"
|
||||||
|
IsSpellCheckEnabled="False"
|
||||||
MaxLength="{x:Bind TextBoxMaxLength, Mode=OneWay}"
|
MaxLength="{x:Bind TextBoxMaxLength, Mode=OneWay}"
|
||||||
PlaceholderText="{x:Bind Path=PlaceholderText}"
|
PlaceholderText="{x:Bind Path=PlaceholderText}"
|
||||||
Text="{x:Bind TextValue, Mode=TwoWay}" />
|
Text="{x:Bind TextValue, Mode=TwoWay}" />
|
||||||
@@ -248,6 +251,7 @@
|
|||||||
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
||||||
MinHeight="160"
|
MinHeight="160"
|
||||||
AcceptsReturn="True"
|
AcceptsReturn="True"
|
||||||
|
IsSpellCheckEnabled="False"
|
||||||
PlaceholderText="{x:Bind Path=PlaceholderText}"
|
PlaceholderText="{x:Bind Path=PlaceholderText}"
|
||||||
ScrollViewer.IsVerticalRailEnabled="True"
|
ScrollViewer.IsVerticalRailEnabled="True"
|
||||||
ScrollViewer.VerticalScrollBarVisibility="Visible"
|
ScrollViewer.VerticalScrollBarVisibility="Visible"
|
||||||
|
|||||||
Reference in New Issue
Block a user