Jump to: navigation, search

Changes


HowTo:Convert Xamarin XAMLs to Maui

362 bytes added, 13 August
/* Avoid multiple SfPullToRefresh controls */ Repalced Grid with SfListView in the example
<pullToRefresh:SfPullToRefresh IsVisible = {Binding ShowContentB, Converter={StaticResource BoolToNotBool}}>
<pullToRefresh:SfPullToRefresh.PullableContent>
<Grid controls:SfListViewExt x:Name="ContentA" .../>
</pullToRefresh:SfPullToRefresh.PullableContent>
</pullToRefresh:SfPullToRefresh>
<pullToRefresh:SfPullToRefresh IsVisible = {Binding ShowContentB}>
<pullToRefresh:SfPullToRefresh.PullableContent>
<Grid controls:SfListViewExt x:Name="ContentB" .../>
</pullToRefresh:SfPullToRefresh.PullableContent>
</pullToRefresh:SfPullToRefresh>
<ResourceDictionary>
<DataTemplate x:Key="TemplateA">
<Grid controls:SfListViewExt x:Name="ContentA" .../>
</DataTemplate>
<DataTemplate x:Key="TemplateB">
<Grid controls:SfListViewExt x:Name="ContentB" .../>
</DataTemplate>
</ResourceDictionary>
|}
[[Category:How-To|Convert Xamarin XAMLs to Maui]]
[[Category:MAUI|Convert Xamarin XAMLs to Maui]]
[[Category:XAML|Convert Xamarin XAMLs to Maui]]
=== Avoid using SyncFusion ListViews directly in SfPullToRefresh controls ===
586
edits