.Net Maui XAML 输入字段组件
.Net Maui XAML Input field component
我似乎找不到在 .net maui xaml 应用程序中使用的简单文本输入字段。 Looking at the docs 在用户 interface/Controls/Views 部分有许多处理用户 interaction/input 的组件,例如复选框和滑块,甚至是搜索字段组件(对我来说应该只是一个专门的输入字段) , 但没有文本输入。
如何在 .Net Maui 中使用 Xaml 创建输入字段?
(我确实找到了 telerik,但我认为它很花钱,我只是在寻找“默认”选项)
据我从问题中了解到,您是在寻找编辑器还是条目。
我猜文档仍然不完整或不正确
它的基本实现看起来像这样:
小文本框:
<Entry
MaxLength="20"
Style="{StaticResource CommonEntryStyle}"
Text="This is the text." />
多行:
<Editor
MaxLength="20"
Style="{StaticResource CommonEditorStyle}"
Text="This is the text." />
我似乎找不到在 .net maui xaml 应用程序中使用的简单文本输入字段。 Looking at the docs 在用户 interface/Controls/Views 部分有许多处理用户 interaction/input 的组件,例如复选框和滑块,甚至是搜索字段组件(对我来说应该只是一个专门的输入字段) , 但没有文本输入。
如何在 .Net Maui 中使用 Xaml 创建输入字段?
(我确实找到了 telerik,但我认为它很花钱,我只是在寻找“默认”选项)
据我从问题中了解到,您是在寻找编辑器还是条目。
我猜文档仍然不完整或不正确
它的基本实现看起来像这样:
小文本框:
<Entry
MaxLength="20"
Style="{StaticResource CommonEntryStyle}"
Text="This is the text." />
多行:
<Editor
MaxLength="20"
Style="{StaticResource CommonEditorStyle}"
Text="This is the text." />