You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public ICommand ClearCommand { get; }
public CustomPopupEditCategory()
{
ClearCommand = new Command<object>(OnClear);
InitializeComponent();
}
private void OnClear(object obj)
{
if (obj is TextField textField)
{
textField.Text = string.Empty;
}
}
CustomPopupEditCategory.xaml(44, 33): [XC0009] No property, BindableProperty, or event found for "ClearCommand", or mismatching type between value and property.
The text was updated successfully, but these errors were encountered:
In version 2.11.0 I can't use the clear button inside a textfield.
The clear button do no work and when I want to use the ClearCommandto create manualy I got this error
CustomPopupEditCategory.xaml(44, 33): [XC0009] No property, BindableProperty, or event found for "ClearCommand", or mismatching type between value and property.
The text was updated successfully, but these errors were encountered: