2016-05-02 66 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

你的意思是「查看」裏面的「CarouselViews」列表方式? –

回答

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文檔中的對象。