7 references to ReturnCommand
Microsoft.Maui.Controls (7)
Entry\Entry.cs (7)
20 /// Backing store for the <see cref="ReturnCommand"/> property. 22 public static readonly BindableProperty ReturnCommandProperty = BindableProperty.Create(nameof(ReturnCommand), typeof(ICommand), typeof(Entry), default(ICommand)); 148 /// Gets or sets the parameter object for the <see cref="ReturnCommand" /> that can be used to provide extra information. 172 /// Internal method to trigger <see cref="Completed"/> and <see cref="ReturnCommand"/>. 182 if (ReturnCommand != null && ReturnCommand.CanExecute(ReturnCommandParameter)) 184 ReturnCommand.Execute(ReturnCommandParameter);