private async void QuizButton_Clicked(object sender, EventArgs e)
        {
            await WaitMs(150);

            QuizFrame.IsVisible = true;
            ContainerGrid.RaiseChild(QuizFrame);
        }
Exemple #2
0
 private bool IsGridVisible(ContainerGrid containerGrid)
 {
     for (ContainerGridRecord parentRow = containerGrid.ParentRow; parentRow != null; parentRow = parentRow.OwnerControl.ParentRow)
     {
         if (!parentRow.Expanded)
             return false;
     }
     return true;
 }