[Winodows Phone 7控制項詳解]Silverlight toolkit for Windows Phone 7.1控制項-7

來源:互聯網
上載者:User

8.ListPicker

當點中這個控制項時,會彈出一個列表來,這個列表有兩種,一種是簡單的像下拉式清單方塊那樣的,還有一種是Full Mode的,會彈出一個完整頁面的列表來。

1. 簡單列表:

            <toolkit:ListPicker  Height="215" HorizontalAlignment="Left" Margin="86,67,0,0" Name="listPicker1" VerticalAlignment="Top" Width="283">                <sys:String>Red</sys:String>                <sys:String>Green</sys:String>                <sys:String>Blue</sys:String>            </toolkit:ListPicker>

SelectionChanged:用來響應列表選中的項。

2. Full Mode:

            <toolkit:ListPicker ItemsSource="{Binding}" Height="139" HorizontalAlignment="Left" Margin="6,256,0,0" Name="listPicker2" VerticalAlignment="Top" Width="444" Header="Test2" FullModeHeader="Colors" >                <toolkit:ListPicker.ItemTemplate><!--顯示-->                    <DataTemplate>                        <StackPanel Orientation="Horizontal">                            <Rectangle  Fill="{Binding }"  Width="30" Height="30"/>                            <TextBlock Text="{Binding}" Margin="12 0 0 0"/>                        </StackPanel>                    </DataTemplate>                </toolkit:ListPicker.ItemTemplate>                <toolkit:ListPicker.FullModeItemTemplate><!-- FullMode Item Template-->                    <DataTemplate>                        <StackPanel Orientation="Horizontal">                            <Rectangle  Fill="{Binding }"  Width="60" Height="60"/>                            <TextBlock Text="{Binding}" Margin="12 0 0 0"/>                        </StackPanel>                    </DataTemplate>                </toolkit:ListPicker.FullModeItemTemplate>            </toolkit:ListPicker>

FullModeHeader:給Full Mode列表加標題名

ItemsSource:綁定要顯示在列表中的內容

綁定顯示內容的方法有兩種:

a. ItemsSource="{Binding}"//在xaml中綁定,這時一定要把要綁定的列表傳給系統的 DataContext = AccentColors;

b. listPicker2.ItemsSource = AccentColors;//動態繫結資料行表項

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.