Ejemplo n.º 1
0
        // Token: 0x060004C4 RID: 1220 RVA: 0x00020BE8 File Offset: 0x0001EDE8
        private static void OnTitleChanged(BindableObject bindable, object oldValue, object newValue)
        {
            MineCell mineCell = bindable as MineCell;

            if (!oldValue.Equals(newValue))
            {
                mineCell.label.Text = newValue.ToString();
            }
        }
Ejemplo n.º 2
0
        // Token: 0x060004C1 RID: 1217 RVA: 0x00020B64 File Offset: 0x0001ED64
        private static void OnIconChanged(BindableObject bindable, object oldValue, object newValue)
        {
            MineCell mineCell = bindable as MineCell;

            if (!oldValue.Equals(newValue))
            {
                mineCell.icon.Source = SvgImageSource.FromFile(newValue.ToString(), 0, 0, true, null);
            }
        }