Skip to content

Instantly share code, notes, and snippets.

@slodge
Created October 9, 2013 06:55
Show Gist options
  • Save slodge/6897274 to your computer and use it in GitHub Desktop.
Save slodge/6897274 to your computer and use it in GitHub Desktop.
public class BinaryEditFooTargetBinding : MvxAndroidTargetBinding
{
protected BinaryEdit BinaryEdit
{
get { return (BinaryEdit) Target; }
}
public BinaryEditFooTargetBinding(BinaryEdit target) : base(target)
{
}
public override void SubscribeToEvents()
{
BinaryEdit.MyCountChanged += TargetOnMyCountChanged;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment