現時点では、単純な Twitter クライアントを使用しています。このクライアントには、リスト バインドによってタイムラインを更新するコマンドにリンクされた [更新] ボタンがあります。現時点では、次の方法でこれを達成しています。
XAML:
<Grid x:Name="TimelineGrid">
<Button Content="Refresh Timeline" Name="RefreshTimeline" Command="{Binding RefreshCommand}" />
<ListView Name="SearchListBox" ItemsSource="{Binding Tweets}" >
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Height="132">
<Image Source="{Binding ImageUrl}"
Height="73" Width="73"
VerticalAlignment="Top" Margin="5,10,8,0"/>
<StackPanel Width="auto">
<TextBlock Text="{Binding Name}"
Foreground="#222" FontSize="28" />
<TextBlock Text="{Binding Text}"
Foreground="#555" TextWrapping="Wrap" FontSize="24" />
</StackPanel>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Grid>
ViewModel.cs:
class ViewModel : INotifyPropertyChanged
{
public List<Tweet> Tweets { get; set; }
readonly Page page;
public ViewModel(Page page)
{
this.page = page;
RefreshCommand = new TwitterCommand<object>(OnRefresh);
}
public TwitterCommand<object> RefreshCommand { get; set; }
void OnRefresh(object obj)
{
PinAuthorizer auth =
new PinAuthorizer
{
Credentials = new LocalDataCredentials()
};
if (auth == null || !auth.IsAuthorized)
{
page.Frame.Navigate(typeof(oAuth));
return;
}
var twitterCtx = new TwitterContext(auth);
var timelineResponse =
(from tweet in twitterCtx.Status
where tweet.Type == StatusType.Home && tweet.Count == 200
select tweet)
.ToList();
Tweets =
(from tweet in timelineResponse
select new Tweet
{
Name = tweet.User.Name,
Text = tweet.Text,
ImageUrl = tweet.User.ProfileImageUrl
})
.ToList();
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs("Tweets"));
}
}
public event PropertyChangedEventHandler PropertyChanged;
public List<User> Users { get; set; }
}
MainPage.xaml.cs が読み込まれたときに、このタイムラインを設定したいと思います。
現時点では、MainPage.xaml.cs にこれがあります。
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
DataContext = new ViewModel(this);
InitializeTimeline();
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
}
void InitializeTimeline()
{
// Get oAuth tokens (They already exist for this example).
PinAuthorizer auth =
new PinAuthorizer
{
Credentials = new LocalDataCredentials()
};
var twitterCtx = new TwitterContext(auth);
//create list timelineResponse populated of last 200 statuses from users home timeline.
var timelineResponse =
(from tweet in twitterCtx.Status
where tweet.Type == StatusType.Home && tweet.Count == 200
select tweet)
.ToList();
//new list of Tweet (contains strings for Name, Text and ImageUrl)
List<Tweet> Tweets = new List<Tweet>();
//Populate list with the data collected from timeline response
Tweets =
(from tweet in timelineResponse
select new Tweet
{
Name = tweet.User.Name,
Text = tweet.Text,
ImageUrl = tweet.User.ProfileImageUrl
})
.ToList();
}
}
今、これを行う最善の方法は、このリストをループして MainPage.xaml のそれぞれのリスト値に値を割り当てることだと考えていますが、現在、その方法に苦労しています。
どんな助けでも大歓迎です:)