我想定义一个自定义类,它有一个图像和一个文本块。
自定义类
<Page Height="100" Width="500"
x:Class="SQLite.Custom"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:SQLite"
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}">
<Image Name="img" HorizontalAlignment="Left" Height="67" Margin="10,10,0,0" VerticalAlignment="Top" Width="91"/>
<TextBlock Name="txtBlk" HorizontalAlignment="Left" Margin="177,22,0,0" TextWrapping="Wrap" FontSize="35" VerticalAlignment="Top" Height="45" Width="264"/>
</Grid>
</Page>
现在我想将它们添加回我的主页中的列表视图。
Custom clb = new Custom();
listviews.Items.Add(clb);
我试过这样做,但在很多情况下都失败了。无法访问 clb.img 或 clb.txtBlk 。
请需要一些帮助。
谢谢。