A general guideline when using const for defining constant values. Whether these constants are to be accessed outside assembly? If not then declare it as
internal static class Pages
{
public const string Home = "Home.xaml";
public const string View2 = "View2.xaml";
/* a few more... */
}