Can I have multiple selection in my list box through XAML?

Can I have multiple selection in my list box through XAML

Answer this question

Can I have multiple selection in my list box through XAML?

  • Namita Parab

    It says "multiple" is not found, default is one. It doesn't still give me th e way to select multiple options in the list box.

    Could you please explore little more.

    Thanks


  • Tarek Madkour MS

    Solution is
    <ListBox SelectionMode="MultiExtended"\>
    Selection mode takes multiExtended, multisimple, one, none values.

    Thanks


  • Martin Ottosen

    Simple:
    <ListBox SelectionMode="Multiple" />

    Sheva


  • Can I have multiple selection in my list box through XAML?