У меня есть элемент управления Silverlight, на котором есть рамка.Я хочу изменить URI этого кадра за пределами элемента управления SL.(У меня есть HTML-ссылка, которая будет использовать Javascript для явного указания изменения элемента управления SL.) Это все работает, но я получаю случайные ошибки JavaScript.
Мастер-страница:
<html>
<body>
<a href="#" onclick="PdmcNav.NavigateTo('page1');">Page 1 Link</a>
<a href="#" onclick="PdmcNav.NavigateTo('page2');">Page 2 Link</a>
<div id="main" >
<asp:ContentPlaceHolder ID="MainContent" runat="server">
</asp:ContentPlaceHolder>
</div>
</body>
</html>
ВключеноJavascript:
// Defining the namespace object for the Pdmc navigation
var PdmcNav = {};
PdmcNav.PdmcSLControl = null;
PdmcNav.NavigateTo = function (pagename) {
// check to see if PDMC Silverlight control is on page. if not (is null), then need to load main PDMC page
if (PdmcNav.PdmcSLControl == null) {
// handle this later
} else {
// Pdmc SL control on page..
// Talk to silverlight control and request it to navigate to pagename
PdmcNav.PdmcSLControl.Content.PdmcSL.NavigateToPage(pagename);
}
}
Главная страница Xaml, загруженная в главную страницу (MainNavigationView.xaml)
<UserControl x:Class="PDMC.Views.MainNavigationView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:toolkit="clr-namespace:Microsoft.Windows;assembly=System.Windows.Controls.Toolkit"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
xmlns:navigationCore="clr-namespace:System.Windows.Navigation;assembly=System.Windows.Controls.Navigation"
mc:Ignorable="d">
<StackPanel>
<!-- this is a test of navigation in the control.... works flawlessly -->
<StackPanel Orientation="Horizontal">
<HyperlinkButton Content="profile" Margin="4" TargetName="contentFrame" NavigateUri="/Views/SupplierProfile.xaml"/>
<HyperlinkButton Content="scores" Margin="4" TargetName="contentFrame" NavigateUri="/Views/SupplierScores.xaml"/>
</StackPanel>
<navigation:Frame x:Name="contentFrame"
Source="/Views/Profile.xaml"
VerticalAlignment="Stretch"
HorizontalAlignment="Stretch" />
</StackPanel>
</UserControl>
MainNavigationView.xaml.cs
using System.Windows;
using System.Windows.Controls;
using System.Windows.Browser;
using System;
namespace PDMC.Views {
public partial class MainNavigationView : UserControl {
/// <summary>
/// Initializes a new instance of the MainNavigationView class.
/// </summary>
public MainNavigationView() {
InitializeComponent();
HtmlPage.RegisterScriptableObject("PdmcSL", this);
}
[ScriptableMember]
public void NavigateToPage(string pageName) {
if (pageName == "Profile") {
Uri x = new Uri(@"/Views/Profile.xaml", System.UriKind.RelativeOrAbsolute);
contentFrame.Source = x;//.Navigate(x);
} else if (pageName == "Scores") {
Uri x = new Uri(@"/Views/Scores.xaml", System.UriKind.RelativeOrAbsolute);
contentFrame.Source=x;//.Navigate(x);
}
}
}
}
Я могу нажать нассылки на главной странице несколько раз, но после нескольких щелчков назад и вперед я получаю следующую ошибку: (случайно, когда я получаю это)
Message: Unhandled Error in Silverlight Application Content for the URI cannot be loaded. The URI may be invalid.
Parameter name: uri at System.Windows.Navigation.NavigationService.NavigateCore(Uri uri, NavigationMode mode, Boolean suppressJournalAdd, Boolean isRedirect)
at System.Windows.Navigation.NavigationService.Journal_Navigated(Object sender, JournalEventArgs args)
at System.Windows.Navigation.Journal.OnNavigated(String name, Uri uri, NavigationMode mode)
at System.Windows.Navigation.Journal.UpdateObservables(JournalEntry currentEntry, NavigationMode mode)
at System.Windows.Navigation.Journal.AddHistoryPoint(JournalEntry journalEntry)
at System.Windows.Navigation.Journal.AddHistoryPointIfDifferent(String newState)
at System.Windows.Navigation.Journal.Browser_Navigated(Object sender, EventArgs eventArgs)
at System.Windows.Navigation.Journal.<>c__DisplayClass3.<InitializeNavigationState>b__2(Object sender, NavigationStateChangedEventArgs args)
at System.Windows.Interop.SilverlightHost.RaiseNavigationStateChanged(String oldState, String newState)
at System.Windows.Interop.SilverlightHost.OnNavigationStatePollingTick(Object sender, EventArgs e)
at MS.Internal.CoreInvokeHandler.InvokeEventHandler(Int32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName)
Кто-нибудь видит, что я делаю неправильно?