【发布】微软应用商店第二次提交失败

10.1.2.10 Functionality    

The product crashes in response to user input.

The product crashes when the user selects 日语五十音图表, 练习模式 or  挑战模式 at the start screen.

The issue was observed on multiple devices running Windows build [22631.3155]. 

Observed On:  HP Spectre x360 2-in-1
Tested On:  HP Spectre x360 2-in-1

Tip: A Windows product may run flawlessly during development and testing, but after submitting it for certification testing, the product may crash or perform unexpectedly. Along these same lines, your product may not perform as expected after publication. You can contact Developer Support at http://aka.ms/storesupport if you need assistance with troubleshooting.
 
Tested devices: HP 17-bs011dx
10.1.2.5 Functionality    
The product metadata inaccurately claims support for Mixed Reality capable hardware. Please make sure you accurately report the supported hardware when you submit your product in Dev Center. Please remove the following hardware from System requirements (under Properties): Windows Mixed Reality motion controllers Windows Mixed Reality immersive headset

错误 代码 10.1.2.10

我处理方法:

修改前

     partial class StartViewModel : ObservableRecipient
   {

}

 

修改后

   internal partial class StartViewModel : ObservableRecipient
   {}

 

修改前

 

   ///显示50音图
   [RelayCommand]
   public void Show50PhonogramView()
   {
       //  window.Hide();
   ViewVisibility = Visibility.Hidden; 
       var phonogramView = App.Current.Services.GetService<PhonogramView>();
       phonogramView.Show();
    


   }

 

修改后

理由我怀疑,微软那边是自动测试,估计是误以为隐藏窗体是崩溃,所有把代码调换了一下顺序。

 

   ///显示50音图
   [RelayCommand]
   public void Show50PhonogramView()
   {
       //  window.Hide();
       var phonogramView = App.Current.Services.GetService<PhonogramView>();
       phonogramView.Show();
       ViewVisibility = Visibility.Hidden;
     
   }

 10.1.2.5 Functionality

在属性配置模块中,取消显示模式这个选项

 

posted @ 2024-03-28 05:31  小林野夫  阅读(5)  评论(0编辑  收藏  举报
原文链接:https://www.cnblogs.com/cdaniu/