Select Git revision
pipeBinding.js
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)
{
//
}
}
}