Exemplo n.º 1
0
        private void OnItemClicked(object sender, EventArgs e)
        {
            PlayerPage player = new PlayerPage();

            player.Disappearing += (s, ev) => FocusButton.Focus();

            Navigation.PushAsync(player);
        }
Exemplo n.º 2
0
 private void FocusKeyboard(object sender, RoutedEventArgs e)
 {
     FocusButton.Focus(FocusState.Keyboard);
 }
Exemplo n.º 3
0
 // Use this for initialization
 void Start()
 {
     //1つのUIを除いて選択不能にする
     focusButton.Focus();
 }
Exemplo n.º 4
0
 private void FocusPointer(object sender, RoutedEventArgs e)
 {
     FocusButton.Focus(FocusState.Pointer);
 }