是否可以像在 Windows 商店应用程序中一样在 Windows Phone 8 中进行购买和试用选项。
我在 Windows 商店中的一款游戏从下载之日起一周内可以完全访问。之后,windows store 本身会锁定游戏(如果我们在仪表板中给 1 周)。
像这样,windows phone 8 具有任何功能。.
即使我尝试购买并尝试使用上面的链接。
我改变了 checklicense() 如下所示。
private void CheckLicense()
{
if DEBUG
string message = "This sample demonstrates the implementation of a trial mode in an application." +
"Press 'OK' to simulate trial mode. Press 'Cancel' to run the application in normal mode.";
if (MessageBox.Show(message, "Debug Trial",
MessageBoxButton.OKCancel) == MessageBoxResult.OK)
{
_isTrial = true;
}
else
{
_isTrial = false;
}
else
_isTrial = _licenseInfo.IsTrial();
//Included lines
if(_isTrail)
freeversion = true; //Here Free version trigger when user presses Try
else
freeversion = false; //Here fullversion trigger when user presses Buy
//Included lines
endif
}
如果我确实喜欢这个。我在主模式下运行它。它总是适用于免费版本是假的。(即:_isTrail 总是返回假)。
是因为我还没有上传到windows phone store还是其他问题??
帮忙解决一下??