<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:viewmodel="clr-namespace:AppliecationName.ViewModel"
x:DataType="viewmodel:SettingsPageViewModel"
x:Class="ApplicationName.Pages.SettingsPage"
Title="Settings"
x:Name="SettingsPage">
....
<StackLayout Grid.Column="0" Margin="10,0,10,0">
<Label Margin="0,0,0,0" FontAttributes="Bold" Text="Language:"/>
<Picker x:Name="LangSetting" SelectedIndexChanged="LangSetting_SelectedIndexChanged" ItemsSource="{Binding Langs, Mode=TwoWay}"
ItemDisplayBinding="{Binding Langs.Name}">
</Picker>
</StackLayout>
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:viewmodel="clr-namespace:AppliecationName.ViewModel"
x:DataType="viewmodel:SettingsPageViewModel"
x:Class="ApplicationName.Pages.SettingsPage"
Title="Settings"
x:Name="SettingsPage">
....
<StackLayout Grid.Column="0" Margin="10,0,10,0">
<Label Margin="0,0,0,0" FontAttributes="Bold" Text="Language:"/>
<Picker x:Name="LangSetting" SelectedIndexChanged="LangSetting_SelectedIndexChanged" ItemsSource="{Binding Langs, Mode=TwoWay}"
ItemDisplayBinding="{Binding Langs.Name}">
</Picker>
</StackLayout>