基本上我正在制作这个简单的笔记应用程序,并且我有一个列表框。当用户通过单击保存按钮添加注释时,该注释将保存为 .txt 文件并在列表框中显示该注释。因此,现在如果用户想要进行更改等,他们只需单击列表框项目,该项目将是他们保存的笔记的名称。我想要做的基本上是当用户单击保存时,它会保存并在列表框中显示注释的名称,因此例如注释名称是 test.txt 然后在列表框中出现 test.txt。就在出现在列表框中的项目名称下,我如何添加一种子项目?例如像 wp7 中的邮件。它具有电子邮件的主题和显示前 12 个左右单词的子项。我怎样才能用我的应用程序做到这一点?到目前为止,我只得到了注释名称。我希望它在项目下显示名称和消息的前 14 个单词。
到目前为止我的代码:
这基本上将 myNote 文件夹中的项目添加到列表框中,以便显示保存的笔记。
Dim myIsolatedStorage As IsolatedStorageFile = IsolatedStorageFile.GetUserStoreForApplication()
myIsolatedStorage.CreateDirectory("myNote")
Dim directory As String = "./myNote/*.*"
Dim filenames As String() = myIsolatedStorage.GetFileNames(directory)
ListBox1.ItemsSource = filenames
这是列表框的 xml
<ListBox HorizontalAlignment="Left" Margin="8,8,0,8" x:Name="ListBox1" Width="440" SelectionMode="Single" FontSize="32" FontFamily="Segoe WP SemiLight" RenderTransformOrigin="0.5,0.5" Grid.Row="2" Style="{StaticResource ListBoxStyle1}" Foreground="White" BorderBrush="#00000000" ItemContainerStyle="{StaticResource ListBoxItemStyle1}" ItemsPanel="{StaticResource ItemsPanelTemplate1}" />
任何人?谢谢!