我正在尝试在Xamarin.Forms的XAML代码中添加一个选择器,但奇怪的是,它拒绝显示。求救!
这是我的代码;
<form th:object="${search}">
<th:block th:each="column: ${columns}">
<input type="radio" th:value="${column.key}" th:id="${column.key}" th:field="*{type}" />
<label th:for="${column.key}" th:text="${column.value}" />
</th:block>
</form>