0

我有一个 Windows 商店应用程序,目前允许我的用户将磁贴固定和取消固定到开始菜单。我可以设置背景和徽标和文本,但问题是我希望磁贴而不是带有文本的静态徽标,我希望它是一种动态磁贴。

所以它会从只有一张图像的一侧开始,然后翻转,另一侧将是我的应用程序信息。我知道您可以对常规的实时磁贴和使用 xml 执行此操作,但我使用的是 c#,并且希望它可以在我的辅助磁贴中工作。

关于如何去做的任何帮助都会很棒。

这是我用来创建辅助磁贴的一些代码:

private async void PinButton_OnClick (object sender, RoutedEventArgs e) { var item = createdItem.SelectedItem;

if (item != null)
{
    var logo = new Uri(item.image);
    if (item != null)
    {
        var smallLogo = new Uri(item.image);
        var wideLogo = new Uri(item.image);
    }

    string tileActivationArguments = logoSecondaryTileId + "WasPinnedAt=" +
                                     DateTime.Now.ToLocalTime();
    logoSecondaryTileId = item.ID+ counter.ToString();
    counter++;

    //Create the tile
    SecondaryTile tile = new SecondaryTile(logoSecondaryTileId, item.Code, item.FirstName + " " + item.LastName,
        tileActivationArguments, TileOptions.ShowNameOnLogo | TileOptions.ShowNameOnWideLogo, logo);

    if (item.SelectedItem is Details)
    {

        tile.ForegroundText = ForegroundText.Light;
        tile.BackgroundColor = Colors.Black;


        bool isPinned =
            await
                tile.RequestCreateForSelectionAsync(GetElementRect((FrameworkElement)sender),
                    Placement.Default);


        if (isPinned)
        {
            Messages.InvokeToast(Toast.Created);
            UnpinButton.Visibility = Visibility.Visible;
            pinButton.Visibility = Visibility.Collapsed;
        }
        else
        {
            Messages.InvokeToast(Toast.Error);
        }

        if (SecondaryTile.Exists(logoSecondaryTileId))
        {
            var dialog = new MessageDialog("Already exists!")
            {
                Title = "Unable to Pin Tile!"
            };
            dialog.Commands.Add(new UICommand("Okay", new UICommandInvokedHandler(CommandHandler)));
            dialog.CancelCommandIndex = 1;
            await dialog.ShowAsync();
        }

    }
}
}
4

1 回答 1

1

您只需要使用具有正面和背面的模板来定义图块。请参阅此处了解如何使用模板定义辅助磁贴:是否可以在 Windows 应用商店应用程序中使用具有辅助磁贴的磁贴模板?. 请参阅此处以获取可能的模板列表以及有支持的模板:http: //msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx

于 2014-07-16T18:15:22.463 回答