質問

I am trying to find on internet how can I using dropdown menu on Windows Phone 8 but I can not find illustrative something. How can I using dropdown menu on WP8.

Thanks in advance.

(sorry my language)

役に立ちましたか?

解決 2

Try Windows Phone Toolkit, use the ContextMenu control.

他のヒント

you can fill data as:

    <toolkit:ListPicker>
           <toolkit:ListPickerItem Content="{Binding LocalizedResources.woman, Source={StaticResource LocalizedStrings}}"/>
           <toolkit:ListPickerItem Content="{Binding LocalizedResources.man, Source={StaticResource LocalizedStrings}}"/>
           <toolkit:ListPickerItem Content="{Binding LocalizedResources.other, Source={StaticResource LocalizedStrings}}"/>
    </toolkit:ListPicker>

Also you can do this by using binding and data template.

See the ListPicker control from the Windows Phone Toolkit. You can find samples in there.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top