我正在尝试将推文显示在我在wpf主窗口中创建的列表框中。该程序编译但没有显示推文,我不知道我做错了什么。代码是:
namespace test
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitalizeComponent();
}
static void Program (string[] args)
{
Using (StreamReader r = new StreamReader (“@1234_AllTweets.json”))
{
string json = r.ReadToEnd();
List<Tweet> tweets = JsonConvert.DeserializeObject<List<Tweet>>(json, new IsoDateTimeConverter { DateTimeFormat =“ddd MMM dd:HH:mm:as zz00 yyyy”});
foreach (Tweet tweet in tweets)
{
((MainWindow)Application.Current.MaknWindow).twittermessage.Items.Add(tweet.text);
}
}
试试这个:
XAML绑定的代码就像
<ListBox ItemsSource="{Binding Path=Tweets}" />