list - Windows Phone 8 equivalent to Androids alert dialog? -
in android project have kind of alert dialog:
i want replicate in windows phone 8, haven't been able find suitable plugin/widget so. list populated sharedpreferences.
my plan windows 8 use isolated storage files grab required entries, best way?
<clippy>
it looks want display list user , allow them pick option </clippy>
if case can use listpicker wp toolkit. install nuget pack , use such:
<toolkit:listpicker fullmodeheader="choose location" itemssource="{binding cities}"> <toolkit:listpicker.fullmodeitemtemplate> <datatemplate> <stackpanel> <textblock margin="0,20" textwrapping="wrap" style="{staticresource phonetextextralargestyle}"> <run text="{binding description}" /> <run text="-" /> <run text="{binding quality}" /> </textblock > </stackpanel> </datatemplate> </toolkit:listpicker.fullmodeitemtemplate> </toolkit:listpicker>
Comments
Post a Comment