我无法在xaml设计器中看到任何控件,我可以点击它们然后转到后面的代码但是看不到,我重新安装VS 2012但没有运气,即使我创建新项目它也会做同样的事情,这也发生在混合中。我搜索得那么多,以解决这个问题,但没有运气,请帮助我 PS:我安装vs 2010 sp1,vs 2012 update 1 这里是空白窗口存储应用程序的基本代码,带有一个按钮
<Page
x:Class="App6.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App6"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
</Grid>
</Page>
答案 0 :(得分:2)
搜索5天后最后一次。我发现了问题,它来自我的视频卡: 我有hp probook 4540s笔记本电脑,它有intel和amd视频卡,所以我自定义设置给我全部图形功能,所以我打开Catalyst Control Center并让Power给我最大化性能(这里问题已经开始)我改变了它优化性能,所有都恢复正常(OMG)
答案 1 :(得分:0)
这是猜测,但您通常必须为网格提供某种行或列定义。这是一个定义两行的网格:
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Button Content="hello world"></Button>
</Grid>
以上对我有用,但以下内容不起作用:
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Button Content="hello world"></Button>
</Grid>