次のチュートリアルでは、C1DataGrid コントロールを RSS フィードに連結するプロセスを説明します。この例では、グリッドを GrapeCity RSS ニュースフィード(http://feeds.feedburner.com/http/wwwgrapecitycom/japan)に連結します。URL を変更すれば、他の RSS フィードを購読することも可能です。
次の手順に従います。
XAML |
コードのコピー
|
---|---|
<UserControl xmlns:c1="http://schemas.componentone.com/winfx/2006/xaml" x:Class="C1DataGrid.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="400" Height="300"> <Grid x:Name="LayoutRoot" Background="White"> <c1:C1DataGrid></c1:C1DataGrid> </Grid> </UserControl> |
XAML |
コードのコピー
|
---|---|
<c1:C1DataGrid></c1:C1DataGrid> |
XAML |
コードのコピー
|
---|---|
<c1:C1DataGrid x:Name="c1DataGrid1">
|
XAML |
コードのコピー
|
---|---|
<c1:C1DataGrid x:Name="c1DataGrid1" AutoGenerateColumns="True"> |
おめでとうございます。このチュートリアルは終了です。このトピックでは、新しい Silverlight プロジェクトを作成し、C1DataGrid コントロールを追加し、グリッドを RSS フィードに連結する方法を学びました。