コード例 #1
0
        private static void OnSelectedPhoneChanged(BindableObject bindable, object oldValue, object newValue)
        {
            ESIPhoneEntry thisctrl = (ESIPhoneEntry)bindable;

            if (thisctrl != null && oldValue != newValue)
            {
                thisctrl.phone.Text = newValue.ToString();
                thisctrl.PhoneNumberChanged(newValue.ToString());
            }
        }