假设我有一个特定的页面,SecondaryTile.xaml。在此页面中,我将辅助磁贴固定到了开始屏幕。现在,如果我点击辅助磁贴,我希望它打开SecondaryTile.xaml。
在WP8.0中,可以通过设置Shell.Create的URI来实现。 E.g:
ShellTile.Create(new Uri("/SecondaryTile.xaml?Parameter=FromTile", UriKind.Relative), NewTileData);
}
但在WinRT中看起来不再支持。
我看到了一个使用该参数启动的示例(它在Mainpage.xaml.cs上的OnNavigatedTo中获取参数),但是由于新的应用程序行为,应用程序正在暂停,因此OnNavigatedTo并不总是触发。
希望有人可以提供帮助。
亲切的问候, 尼尔斯
答案 0 :(得分:0)
这不应该作为应用程序逻辑吗?
检查应用程序代码隐藏的OnLaunched方法中的LaunchActivatedEventArgs参数:
protected override async void OnLaunched(LaunchActivatedEventArgs args)
{
ApplicationData.Current.LocalSettings.Values[Constants.APP_PARAMETERS] = args.Arguments;
// Do not repeat app initialization when already running, just ensure that
// the window is active
if (args.PreviousExecutionState == ApplicationExecutionState.Running)
{
Window.Current.Activate();
await ViewManager.Instance.LaunchView();
return;
}
考虑实施某种类型的ViewManager来管理启动视图:
public class ViewManager
{
#region Singleton
private ViewManager()
{
}
static ViewManager _viewManager = null;
public static ViewManager Instance
{
get
{
if (_viewManager == null)
{
_viewManager = new ViewManager();
}
return _viewManager;
}
}
#endregion
public async Task LaunchView()
{
bool displaySubheader = false;
var displayBackbutton = false;
var arguments = ApplicationData.Current.LocalSettings.Values[Constants.APP_PARAMETERS] as string;
var argumentsExist = !string.IsNullOrEmpty(arguments);
if (!argumentsExist)
{
await UIServices.Instance.Load(typeof(HomePage), null, displaySubheader, displayBackbutton);
}
else
{
displaySubheader = true;
displayBackbutton = false;
await UIServices.Instance.Load(typeof(GroupPage), arguments, displaySubheader, displayBackbutton);
var groupId = new Guid(arguments);
await ReadPost(groupId);
}
}
。 。
以下是我创建辅助磁贴的方法:
SecondaryTile secondaryTile =
new SecondaryTile(group.GroupId.ToString(),
group.Name,
group.Name,
group.GroupId.ToString(),
TileOptions.ShowNameOnWideLogo,
new Uri("ms-appx:///Assets/Logo.png"),
new Uri("ms-appx:///Assets/WideLogo.scale-100.png"));
var successful = await secondaryTile.RequestCreateAsync();
答案 1 :(得分:0)
您无法从OnNavigatedTo事件直接导航到其他页面。但是,您可以将导航添加为UI线程上的排队事件。
在OnNavigatedTo事件处理程序中,检查以下内容(您的测试可能需要更复杂,因为在此示例中并未考虑所有可能性,例如e.Parameters beeing null)。
if (e.Parameter.ToString().Contains("something_from_secondary_tile_arguments") && (e.NavigationMode == NavigationMode.New))
{
await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => { Current.Frame.Navigate(typeof(Transactions), "data_for_your_sub_page"); });
}
此外,您需要在创建SecondaryTile时指定Arguments属性。
此处有更多信息:Not able to navigate to pages on Windows Metro App using c#