我正在尝试学习通用Windows平台的编程应用程序。我目前正在使用ListView
,我在<DataTemplate>
中定义了它的布局,但代码却是一团糟。有没有办法在单独的文件夹中定义<DataTemplate>
?我在网上搜索,但我找不到解决方案。你能帮帮我吗?感谢。
答案 0 :(得分:3)
我总是建议为这种事情创建一个ResourceDictionary。以下是一个示例设置:
创建文件夹资源&gt;添加&gt;新项目&gt;资源字典&#34; Templates.xaml&#34;
在App.xaml中添加
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/Templates.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
在Templates.xaml中,您可以添加所需的任何模板,如下所示:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:thestory.Resources">
<DataTemplate x:Key="ListItemTemplate">
</DataTemplate>
现在,您可以使用{StaticResource ListItemTemplate}
在任何需要的地方引用此模板祝你好运!
PS:我实际上也建议对样式和其他应用程序范围的资源(如字体大小,画笔,背景等)执行相同的操作。
答案 1 :(得分:0)
在datatemplate.xaml中定义datatemplate:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<DataTemplate>
</DataTemplate>
</ResourceDictionary>
在UserControl中,请参阅datatemplate:
<UserControl
x:Class="<assemblyName>.Themes.MyUserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:PerpetuumSoft.DataManager.UniApp.UI.Themes"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="400">
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="ms-appx:///<AssemblyName>/Themes/DataTemplate.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
<Grid>
</Grid>
</UserControl>