Relative Content

Tag Archive for c#.netxamlbindingmaui

Binding Property Not Found – MAUI .NET 8

I’m working on a .NET MAUI project and I’m running into the following error: [0:] Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics: Warning: ‘IsAudioEnabled’ property not found on ‘TTIG02_Controller.Components.ToggleSettingsItem’, target property: ‘TTIG02_Controller.Components.ToggleSettingsItem.IsToggled’ [0:] Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics: Warning: ‘IsNotificationEnabled’ property not found on ‘TTIG02_Controller.Components.ToggleSettingsItem’, target property: ‘TTIG02_Controller.Components.ToggleSettingsItem.IsToggled’ This are the relevant parts of the code: SettingsPage.xaml: <?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” x:Class=”TTIG02_Controller.Views.SettingsPage” […]