This file contains 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 Android.App; | |
using Android.Content; | |
using Android.OS; | |
using Android.Runtime; | |
using Android.Views; | |
using Android.Widget; | |
using Cirrious.MvvmCross.Android.Views; | |
using Cirrious.MvvmCross.Binding.Android.Views; | |
using MobSales.Logic.ViewModels; |
This file contains 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
namespace Cirrious.MvvmCross.Binding.Android.Views | |
{ | |
public interface IMvxBindableAutoCompleteTextView | |
{ | |
int TemplateId { get; } | |
void BindTo(object source); | |
} | |
} |