嗨,我只是Windows 8应用商店应用程序的新开发人员。这是我遇到的一个问题,即使我已经尽力寻找答案。但是我找不到解决方案,我希望有人可以帮助我。

我只是想在Windows 8上开发一个测试应用程序,但是当我在文件Common.Visual Studio中打开文件“StandardStyle.xaml”时,Visual Studio报告了错误:“无法创建'Windows.UI.Xaml.Controls。来自文本“鼠标”的Primitives.PlacementMode”。

我是中文,所以文字是中文。

最佳答案

在“StandardStyle.xaml”中,替换为:

<ToolTipService.Placement>鼠标</ToolTipService.Placement>

与:
<ToolTipService.Placement>Mouse</ToolTipService.Placement>

ToolTipService。 Placement只能是底部左侧鼠标右侧顶部。它不应该在Microsoft方面自动翻译。我在法语中遇到了与Souris单词相同的问题,必须手动将其更改为Mouse

关于c# - 无法从文本 'Windows.UI.Xaml.Controls.Primitives.PlacementMode'创建 '鼠标',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13152998/

10-12 06:42