10

I want the dropdowns like in the pictures below:

I dont know how I get them. I suppose that these are some kind of comboboxes but I am not sure. Can anyone help me and provide the xaml code?! Thanks.

1
  • 2
    So what did you end up using/doing... ? Commented Oct 21, 2013 at 22:25

3 Answers 3

12

I suppose you are looking for Combo box: Windows 8 store controls list (MSDN) . To use:

    <ComboBox x:Name="comboBox1" SelectionChanged="ComboBox_SelectionChanged" Width="100">
    <x:String>Item 1</x:String>
    <x:String>Item 2</x:String>
    <x:String>Item 3</x:String>
    </ComboBox>
Sign up to request clarification or add additional context in comments.

Comments

1

you would have to use Popup. Below link might help you

http://rahulpnath.com/blog/windows-8-series-drop-down-button/

Comments

0

These look like ListBoxes that were placed in some popups. Callisto has a Menu control that I haven't seen, but from the name of it - it might be similar (I think you are supposed to put it in a Flyout control).

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.