Skip to content
Snippets Groups Projects
Select Git revision
  • 7f7e276114d138789f4228a09b4bf8a9f4c1ed99
  • main default protected
2 results

pipeBinding.js

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)
            {
                //
            }
        }
    }