How to get the property values from the object ie object x=e.clickeditem;
in the object x i will be having notesid=1
notesbody=Hi
notesheading=sample.
i want to display the notedbody value in the textblock.how to do it.
amair
var clickedItem = e.clickedItem as Note; if(clickedItem != null) { //take properties from clickedItem. }