Drop-down Selection Control - Windows 8 Metro - XAML

前端 未结 3 1046
清歌不尽
清歌不尽 2021-02-20 16:20

I want the dropdowns like in the pictures below:

\"\" \"\"

相关标签:
3条回答
  • 2021-02-20 16:50

    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>
    
    0 讨论(0)
  • 2021-02-20 16:56

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

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

    0 讨论(0)
  • 2021-02-20 17:02

    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).

    0 讨论(0)
提交回复
热议问题