示例#1
0
        // Token: 0x06000517 RID: 1303 RVA: 0x00023874 File Offset: 0x00021A74
        private static void OnTitleChanged(BindableObject bindable, object oldValue, object newValue)
        {
            QRCodeCell qrcodeCell = bindable as QRCodeCell;

            if (!newValue.Equals(oldValue))
            {
                qrcodeCell.label.Text = newValue.ToString();
            }
        }
示例#2
0
        // Token: 0x0600051D RID: 1309 RVA: 0x00023968 File Offset: 0x00021B68
        private static void OnHintChanged(BindableObject bindable, object oldValue, object newValue)
        {
            QRCodeCell qrcodeCell = bindable as QRCodeCell;

            if (!newValue.Equals(oldValue))
            {
                qrcodeCell.entry.Placeholder = newValue.ToString();
            }
        }
示例#3
0
        // Token: 0x0600051A RID: 1306 RVA: 0x000238EC File Offset: 0x00021AEC
        private static void OnTextChanged(BindableObject bindable, object oldValue, object newValue)
        {
            if (newValue == null)
            {
                return;
            }
            QRCodeCell qrcodeCell = bindable as QRCodeCell;

            if (!newValue.Equals(oldValue))
            {
                qrcodeCell.entry.Text = newValue.ToString();
            }
        }