Skip to content
Snippets Groups Projects
Select Git revision
  • 8ffa368f5db4aa7e8467bc15c6569d5a76fcdc9f
  • develop default protected
  • bugfixes
  • Browser_Addon
  • maximalProfiles
  • Merge_Develop_in_ProgressScreen
  • ProgressScreen
  • list_programs
  • fixNavigationBetwenScreens
  • focusSessionFeature3
  • startfocussessionscreenfeature
  • distractionListFeature
  • master
  • Addon
14 results

01Startscreen.xaml.cs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    01Startscreen.xaml.cs 1.07 KiB
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;
    
    namespace InnoLabProjektDektopApp
    {
        /// <summary>
        /// Interaction logic for MainWindow.xaml
        /// </summary>
        public partial class Startscreen : Page
        {
            public Startscreen()
            {
                InitializeComponent();
            }
            private void Option1_Click(object sender, RoutedEventArgs e)
            {
                //this.Content = new AnotherWindow().Content;
            }
            private void Option2_Click(object sender, RoutedEventArgs e)
            {
                //this.Content = new AnotherWindow().Content;
            }
            private void Option3_Click(object sender, RoutedEventArgs e)
            {
                //this.Content = new AnotherWindow().Content;
            }
    
            private void Button_Click(object sender, RoutedEventArgs e)
            {
                //
            }
        }
    }