2016-05-02 12 views
0
<corelayouts:CarouselViewDots 
    BindingContext="{Binding Path=.}" 
    HorizontalOptions="FillAndExpand" 
    VerticalOptions="FillAndExpand" 
    DotColor="White" 
    DotSize="6" 
    ScrollToIndex="{Binding ScrollToIndex, Mode=TwoWay}"> 
    <corelayouts:CarouselViewDots.CarouselViews> 
    <View> // There is supposed to list of view 
     <citem:NewsCarouselView/> 
    </View> 
    </corelayouts:CarouselViewDots.CarouselViews> 
</corelayouts:CarouselViewDots> 

どのように処理する必要がありますか? 私は、ビューのスライダーを作成するために
corelayouts:CarouselViewDots.CarouselViews を取る必要があります。xamlでリストを作成するには?

+0

は何ですか?もっと詳しく説明してください –

+0

私はスライドのリストを渡す必要があります。リストまたはリスト bleggleb

+0

"カルーセルビュー"内の "表示"をリスト形式で意味しますか? –

答えて

0

XmlSerializerを使用して、次の方法でXMLデータをクラスに変換します。

Dim _xmlReader = New XmlTextReader("your_file.xml"); 

Dim _serializer = New Xml.Serialization.XmlSerializer(GetType(your_class_type_xml_data)); 

Dim result = CType(_serializer.Deserialize(_xmlReader), your_class_type_xml_data); 

ここで、XmlTextReaderオブジェクトは、XMLデータをファイルから読み取るために使用されます。

xmlSerializerオブジェクトは、XMLドキュメントとの間でオブジェクトを直列化および逆シリアル化するために使用されます。

関連する問題