嘿,我只是Windows 8商店应用的新开发者。这是我遇到的一个问题,即使我已尽力搜索答案。但我找不到解决方案。我希望有人可以帮助我。
我只是想在Windows 8上开发一个测试应用程序,但当我在floder Common中打开文件“StandardStyle.xaml”时,Visual Studio报告错误:“无法创建'Windows.UI.Xaml来自文本'鼠标'的.Controls.Primitives.PlacementMode'。
我是中国人,所以文字是中文。
答案 0 :(得分:1)
在“StandardStyle.xaml”中,替换:
<ToolTipService.Placement>鼠标</ToolTipService.Placement>
使用:
<ToolTipService.Placement>Mouse</ToolTipService.Placement>
ToolTipService。Placement只能底部,左,鼠标,正确或<强>最即可。它不应该在Microsoft方面自动翻译。我在法语中遇到了与Souris
一词相同的问题,我必须手动更改为Mouse
。
答案 1 :(得分:0)
PlacementMode
是一个枚举(请查看此链接http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.primitives.placementmode)。标记之间的文本假定由值替换。因此唯一有效的文本是上面链接中存在的文本。似乎全球化是这里的问题(翻译不应该的东西)。