1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| using System.Windows;
using System.Windows.Controls;
namespace Navigation
{
/// <summary>
/// Interaction logic for NavigationBar.xaml
/// </summary>
public partial class NavigationBar : UserControl
{
public NavigationBar()
{
InitializeComponent();
}
private void ButtonHome_Click(object sender, RoutedEventArgs e)
{
Navigator.Default.NavigateToHome();
}
private void ButtonKevin_Click(object sender, RoutedEventArgs e)
{
Navigator.Default.NavigateToKevin();
}
private void ButtonJason_Click(object sender, RoutedEventArgs e)
{
Navigator.Default.NavigateToJason();
}
private void ButtonBrandon_Click(object sender, RoutedEventArgs e)
{
Navigator.Default.NavigateToBrandon();
}
}
} |