Skip to content

Instantly share code, notes, and snippets.

@fdundjer
Created June 26, 2018 09:24
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/d325ed0d7090a5f0079ec4a1ef30e549 to your computer and use it in GitHub Desktop.
Save fdundjer/d325ed0d7090a5f0079ec4a1ef30e549 to your computer and use it in GitHub Desktop.
using System;
using System.Reflection;
using Execom.TargetBinding.iOS.Controls;
using MvvmCross.Binding.Bindings.Target;
using UIKit;
namespace Execom.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