<SearchBar x:Name="searchBar"
Placeholder="Search"
TextChanged="OnSearchTextChanged"
TextColor="{DynamicResource NoteTextDark}">
<SearchBar.BackgroundColor>
<OnPlatform x:TypeArguments="Color">
<On Platform="Android" Value="{DynamicResource NotesEditorColor}" />
</OnPlatform>
</SearchBar.BackgroundColor>
上述代码在DynamicResource NotesEditorColor上引发无效的强制转换错误
此外,它适用于DynamicResource NoteTextDark,没有任何问题
1条答案
按热度按时间ao218c7q1#
代替xaml,在xaml.cs代码后面的文件中编写此代码可以正常工作