Skip to content

Instantly share code, notes, and snippets.

@fdundjer
Created January 25, 2021 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fdundjer/44baa584a50c0aa149f6a61af3b7a91a to your computer and use it in GitHub Desktop.
Save fdundjer/44baa584a50c0aa149f6a61af3b7a91a to your computer and use it in GitHub Desktop.
using System;
using System.Reflection;
using HTEC.TargetBinding.iOS.Controls;
using MvvmCross.Binding.Bindings.Target;
using UIKit;
namespace HTEC.TargetBinding.iOS.Bindings
{
public class TintColorMvxTargetBinding : MvxWithEventPropertyInfoTargetBinding
{
public TintColorMvxTargetBinding(CustomUIImageView target, PropertyInfo targetPropertyInfo)
: base(target, targetPropertyInfo)
{
}
public override Type TargetType => typeof(UIColor);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment