在这里我附上了一个代码来获取文本块中的值,但我想在列表视图中打印 txt1 和 date1 值
xml代码
<ListBox Margin="0,0,-12,0" x:Name="myList">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock x:Name="txt1" Text="{Binding date1}" Style="{StaticResource PhoneTextExtraLargeStyle}"/>
<StackPanel Orientation="Horizontal" Margin="0,0,0,17">
<TextBlock x:Name="txt2" Margin="5,0,0,0" Style="{StaticResource PhoneTextSubtleStyle}"/>
</StackPanel>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
c# 代码
textBlockNumber.Text = "1232"
txt1.Text = textBlockNumber.Text;
日期时间 date1 = 日期时间。现在;