Exemplo n.º 1
0
        private async void LaunchExampleSeven()
        {
            var list         = ExampleJobs.SampleBadges();
            var achievements = new AchievementsPane();

            achievements.ItemsSource = list;

            await WindowManager.ShowWindowDialog(achievements, "Achievements", "\uE734");
        }
Exemplo n.º 2
0
        //Settings Panel

        public async void LaunchExampleOne()
        {
            var title = "Example One Settings";
            await WindowManager.ShowSettingsDialog(title, ExampleJobs.SampleListOne());
        }
Exemplo n.º 3
0
 private async void LaunchExampleThree()
 {
     var title = "Menu";
     await WindowManager.ShowSettingsDialog(title, ExampleJobs.SampleListTwo(), 1);
 }
Exemplo n.º 4
0
 private async void ExampleTwo_Click(object sender, RoutedEventArgs e)
 {
     await ExampleJobs.LaunchExampleTwo();
 }