我有两个模板,一个用于文本框,一个用于列表视图,两者都只用于给它们圆角而不是默认矩形。我的文本框需要“ScrollViewer x:Name =”PART_ContentHost“行以显示文本,但这对列表视图不起作用。如果我取出listview的模板,将显示示例listviewitem(stuff)。否则它不会,我看不到我在后面的代码中添加的任何其他项目。我在xaml中缺少什么才能使其工作?
以下是我的xaml:
<!-- Design Templates to set the borders of the controls-->
<UserControl.Resources>
<ControlTemplate x:Key="TextBoxTemplate" TargetType="TextBox">
<Border BorderBrush="Black" BorderThickness="1,1,1,.5" CornerRadius="7">
<ScrollViewer x:Name="PART_ContentHost" ></ScrollViewer>
</Border>
</ControlTemplate>
<ControlTemplate x:Key="ListViewTemplate" TargetType="ListView">
<Border BorderBrush="Black" BorderThickness=".5,1,1,1" CornerRadius="7">
</Border>
</ControlTemplate>
</UserControl.Resources>
<!-- Controls -->
<Grid Height="270" Width="400">
<StackPanel Width="390">
<TextBox Height="35" Name="InputTextbox" Template="{StaticResource TextBoxTemplate}" VerticalContentAlignment="Center" TextChanged="InputTextbox_TextChanged"></TextBox>
<ListView Height="235" Name="ResultsListView" Template="{StaticResource ListViewTemplate}" SelectionChanged="ResultsListView_SelectionChanged">
<ListViewItem Content="stuff"></ListViewItem>
</ListView>
</StackPanel>
</Grid>
答案 0 :(得分:1)
您的ControlTemplate没有与之关联的演示者。这就是为什么你没有看到任何物品。有关如何创建ListView.ControlTemplate:
的工作示例,请参阅此页面MSDN: ListView ControlTemplate Example
这里是您的控件模板的更新xaml:
<ControlTemplate x:Key="ListViewTemplate" TargetType="ListView">
<Border BorderBrush="Black" BorderThickness=".5,1,1,1" CornerRadius="7">
<ScrollViewer>
<ItemsPresenter />
</ScrollViewer>
</Border>
</ControlTemplate>