有没有一种方法可以完全删除自动更正栏?
我已设置:
textField.autocorrectionType = UITextAutocorrectionTypeNo;
但是它不会删除条,只是自动更正。
答案 0 :(得分:0)
如果设置<Button Content="Type 1" Command="{Binding NavigateToType1Command}" />
<Button Content="Type 2" Command="{Binding NavigateToType2Command}" />
<ContentControl Content="{Binding MainContent}">
<ContentControl.Resources>
<DataTemplate DataType="{x:Type vm_Type1:Type1ViewModel}">
<vw_Type1:Type1View />
</DataTemplate>
<DataTemplate DataType="{x:Type vm_Type2:Type2ViewModel}">
<vw_Type2:Type2View />
</DataTemplate>
</ContentControl.Resources>
</ContentControl>
并删除InternalDelegateCommand
和autocorrectionType
inputAssistantItem.leadingBarButtonGroups
”
要完全隐藏快捷方式,请设置LeadingBarButtonGroups和 TrailingBarButtonGroups属性设置为nil。这样做只会隐藏 快捷方式,并且不会隐藏键入建议。隐藏输入 建议,您还必须设置 显示UITextAutocorrectionType.no键盘的响应程序。
”