0

我在 xaml 设计器中看不到任何控件,我可以单击它们并转到后面的代码但看不到,我重新安装 VS 2012 但没有运气,即使我创建新项目它也会这样做,而且这个也发生混合。我搜索了这么多这么多来解决这个问题,但没有运气,请帮帮我 PS:我在这里安装了 vs 2010 sp1,vs 2012 update 1 带有按钮的空白 Windows 商店应用程序的基本代码

<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>
4

2 回答 2

2

终于经过 5 天的搜索。我发现了问题,它来自我的显卡:我有 hp probook 4540s 笔记本电脑,它有 intel 和 amd 显卡,所以我自定义设置以提供完整的图形功能,所以我打开 Catalyst Control Center 并让 Power give我最大化性能(问题从这里开始)我将其更改为优化性能,一切都恢复正常(OMG)

于 2013-04-08T12:07:27.017 回答
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>
于 2013-04-06T20:59:43.817 回答