我是Windows 10应用开发的新手。我试图将自定义UserControl嵌入到我的应用程序的页面中。出于某种原因,内容完全被我在XAML页面中放入的内容所取代。为了给出更好的解释,这里是代码:
AppView.xaml (控件)
<UserControl
x:Class="Sirloin.AppView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Sirloin"
xmlns:h="using:Sirloin.Helpers">
<SplitView x:Name="splitView" DisplayMode="CompactOverlay">
<SplitView.Pane>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<!--The hamburger-->
<Button Click="OnHamburgerClicked" Grid.Row="0" Style="{StaticResource MenuButtonStyle}">
<Button.DataContext>
<local:MenuItem Symbol=""/>
</Button.DataContext>
</Button>
<!--Buttons just below the hamburger-->
<ListView x:Name="topView"
Grid.Row="1"
ItemTemplate="{StaticResource ListViewItemTemplate}"/>
<!--Buttons toward the bottom of the menu-->
<ListView x:Name="bottomView"
Grid.Row="3"
ItemTemplate="{StaticResource ListViewItemTemplate}"/>
</Grid>
</SplitView.Pane>
<SplitView.Content>
<!--Where I'd like the content specified in MainPage to appear-->
<Frame x:Name="frame" Background="White"/>
</SplitView.Content>
</SplitView>
</UserControl>
MainPage.xaml中
<Page
x:Class="Sirloin.Example.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="using:Sirloin"
xmlns:local="using:Sirloin.Example">
<s:AppView>
<Grid Background="White">
<TextBlock HorizontalAlignment="Center"
VerticalAlignment="Center"
Text="Hello, world!"/>
</Grid>
</s:AppView>
</Page>
当MainPage
在VS设计器中呈现时,就好像我的用户控件的内容已完全被删除并被主页中指定的内容替换。为了给你一个想法,这是设计师的截图:
正如您所看到的,没有菜单或SplitView
或我在自定义控件中添加的内容;唯一出现的是我在{1}}的XAML中指定的TextBlock
。
无论如何,为什么会发生这种情况,我该怎么做才能解决它?
编辑:找到了我正在寻找的解决方案here,但Peter Duniho的答案已被接受,因为它可以更好地解释发生了什么
答案 0 :(得分:3)
UserControl
是Control
的子类(类似于WPF&#39; s ContentControl
)。它只能有一个孩子。因此,您自己明确地覆盖了内容。通过在AppView
XAML中为Page
指定子元素,您可以设置控件的内容。这优先于UserControl
自己的XAML中指定的任何内容。
不幸的是,它不是很清楚你预期会发生什么。也许您想为其他内容提供属性,AppView
类可以使用该属性添加到自己的内容中。或许你应该允许客户端代码提供DataTemplate
和某种数据项对象(例如模型类),它在ContentPresenter
或类似的AppView
XAML中使用
但无论你想做什么,你都必须在不使用和覆盖Content
的隐含UserControl
属性的当前值的情况下执行此操作。 Page
XAML。