windows runtime - Text sharing not working as expected -
protected void ondatarequested(datatransfermanager sender, datarequestedeventargs e) { e.request.data.properties.title = "title"; e.request.data.properties.description = "description"; e.request.data.settext("description"); }
i sharing app link link this.
what expect do:
when sharing text message app
message: description
when sharing email app
subject: title
message: description
what doing:
when sharing text message app
message: title description
when sharing email app
subject: title
message: description
i want share description when user share using message. appending title also.
Comments
Post a Comment