forked from ravendb/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.xaml.cs
69 lines (61 loc) · 1.86 KB
/
MainPage.xaml.cs
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Raven.Studio.Behaviors;
using Raven.Studio.Infrastructure;
namespace Raven.Studio
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
}
// After the Frame navigates, ensure the HyperlinkButton representing the current page is selected
private void ContentFrame_Navigated(object sender, NavigationEventArgs e)
{
HighlightCurrentPage(e.Uri);
GC.Collect();
}
private void HighlightCurrentPage(Uri currentUri)
{
foreach (var hyperlink in MainLinks.Children.OfType<HyperlinkButton>())
{
if (HyperlinkMatchesUri(currentUri.ToString(), hyperlink))
{
VisualStateManager.GoToState(hyperlink, "ActiveLink", true);
}
else
{
VisualStateManager.GoToState(hyperlink, "InactiveLink", true);
}
}
if (currentUri.ToString() == string.Empty)
{
VisualStateManager.GoToState(SummaryLink, "ActiveLink", true);
}
}
private static bool HyperlinkMatchesUri(string uri, HyperlinkButton link)
{
if (link.CommandParameter != null &&
uri.StartsWith(link.CommandParameter.ToString(), StringComparison.InvariantCultureIgnoreCase))
{
return true;
}
var alternativeUris = LinkHighlighter.GetAlternativeUris(link);
if (alternativeUris != null && alternativeUris.Any(alternative => uri.StartsWith(alternative, StringComparison.InvariantCultureIgnoreCase)))
{
return true;
}
return false;
}
// If an error occurs during navigation, show an error window
private void ContentFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
{
e.Handled = true;
ErrorPresenter.Show(e.Exception, null, string.Format("Could not load page: {0}", e.Uri));
}
}
}