How to implement 'To' field functionality present in Windows Phone 8 inbuild message application -
i need implement functionality similar 'to' field present in windows phone 8 in build message application.
whenever user wants remove name 'to' field, needs tap on name 1 message pop displayed remove, open, copy , cancel
user cannot place cursor in between of name, once name ended semicolon
can suggest me approach implement feature?
thanks in advance
this custom control have write. not delivered along other windows phone controls.
here scetch of how achieve this: custom control combination of textblock
("to:" field) followed gridview
, followed textbox
(input field). @ beginning, gridview
has no entries , therefore not visible. if user selects email type ahead or closes input semicolon (listen keyup
event of textbox), control logic creates instance of datamodel holds id, email address, name , whatever need. instance added observablecollection
bound gridview
. having observablecollection
in place result in automatic display of entry in gridview
. clear textbox
, prepared next entry.
the rest layout stuff have no borders on textbox
, have gridview
display names semicolons etc.
finally react on gridview
selections popup delete or update content.
Comments
Post a Comment