// Token: 0x060004EF RID: 1263 RVA: 0x00022308 File Offset: 0x00020508 private static void OnTitleChanged(BindableObject bindable, object oldValue, object newValue) { SelectCell selectCell = bindable as SelectCell; if (!newValue.Equals(oldValue)) { selectCell.label.Text = newValue.ToString(); } }
// Token: 0x060004FA RID: 1274 RVA: 0x000224B4 File Offset: 0x000206B4 private static void OnCanInputChanged(BindableObject bindable, object oldValue, object newValue) { SelectCell selectCell = bindable as SelectCell; if (!newValue.Equals(oldValue)) { selectCell.entry.IsEnabled = (bool)newValue; } }
// Token: 0x060004FD RID: 1277 RVA: 0x0002252C File Offset: 0x0002072C private static void OnIsVisalbePropertyChanged(BindableObject bindable, object oldValue, object newValue) { SelectCell selectCell = bindable as SelectCell; if (!newValue.Equals(oldValue)) { selectCell.view.IsVisible = (bool)newValue; } }
// Token: 0x060004F2 RID: 1266 RVA: 0x00022380 File Offset: 0x00020580 private static void OnTextChanged(BindableObject bindable, object oldValue, object newValue) { if (newValue == null) { return; } SelectCell selectCell = bindable as SelectCell; if (!newValue.Equals(oldValue)) { selectCell.placeLabel.Text = newValue.ToString(); } }
// Token: 0x060004F5 RID: 1269 RVA: 0x000223FC File Offset: 0x000205FC private static void OnCanSelectChanged(BindableObject bindable, object oldValue, object newValue) { SelectCell selectCell = bindable as SelectCell; selectCell.arrow.IsVisible = (bool)newValue; }