windows - Multi select drop down list in UWP -
i want multi select drop down list mvvm cross uwp app. there predefined control? or need implement custom control achieve this.
any or suggestions appreciated.
thank you
there no built-in multi-select combobox in uwp, can build own - issue multiselect combobox control in windows 8 .
basically can add checkboxes each item in combobox , create logic gather selected items , provide bindable way access them.
to make simpler, can create special class have ischecked
property , add checkbox two-way binding property. ensure checking of box in ui reflected in class , can enumerate items find have ischecked
set true
.
Comments
Post a Comment