Created
June 30, 2020 13:29
-
-
Save sjehutch/54432798fa31d95839d92d387bcb0aeb to your computer and use it in GitHub Desktop.
Xamarin Entry Complete Event
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Reflection; | |
using System.Windows.Input; | |
using Xamarin.Forms; | |
namespace EntryCompleteEvent | |
{ | |
public class EntryCompletedBehavior : Behavior<Entry> | |
{ | |
protected override void OnAttachedTo(Entry bindable) | |
{ | |
base.OnAttachedTo(bindable); | |
AssociatedObject = bindable; | |
bindable.BindingContextChanged += Bindable_BindingContextChanged; | |
bindable.Completed += Bindable_Completed; | |
} | |
protected override void OnDetachingFrom(Entry bindable) | |
{ | |
base.OnDetachingFrom(bindable); | |
bindable.BindingContextChanged -= Bindable_BindingContextChanged; | |
bindable.Completed -= Bindable_Completed; | |
AssociatedObject = null; | |
} | |
private void Bindable_BindingContextChanged(object sender, System.EventArgs e) | |
{ | |
OnBindingContextChanged(); | |
} | |
private void Bindable_Completed(object sender, System.EventArgs e) | |
{ | |
if (Command == null)return; | |
//object parameter = Converter.Convert(e, typeof(object), null, null); | |
if (Command.CanExecute(e)) | |
{ | |
Command.Execute(e); | |
} | |
} | |
protected override void OnBindingContextChanged() | |
{ | |
base.OnBindingContextChanged(); | |
BindingContext = AssociatedObject.BindingContext; | |
} | |
public Entry AssociatedObject { get; private set; } | |
public static readonly BindableProperty CommandProperty = | |
BindableProperty.Create("Command", typeof(ICommand), typeof(EntryCompletedBehavior), null); | |
public ICommand Command | |
{ | |
get { return (ICommand)GetValue(CommandProperty); } | |
set { SetValue(CommandProperty, value); } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment