EBS_POC/EBS POC/Controls/Start_Page.xaml.cs

39 lines
965 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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 EBS_POC.Controls
{
/// <summary>
/// Interaction logic for Start_Page.xaml
/// </summary>
public partial class Start_Page : UserControl
{
public Start_Page()
{
InitializeComponent();
}
private void button2_Click(object sender, RoutedEventArgs e)
{
MainWindow.Current.frameMain.Navigate(new Deploy_Page());
}
private void button_Click(object sender, RoutedEventArgs e)
{
MainWindow.Current.frameMain.Navigate(new Connect_Page());
}
}
}