I am working in Windows phone 8. In One of the pages of my app there is a LongListSelector
and under it there is a TextBox
. When the TextBox
get focused then keyboard is opened. As the keyboard is opened then the LongListSelector
is shifted up by keyboard height. If I maintain the margin of the LongListSelector
by keyboard's offset then some of the items of LongListSelector
go under the keyboard.
All I want to do is when keyboard is shown then margin will be updated and the previous focused item of the LongListSelector
should not go under keyboard. Here I don't want to use ScrollTo()
function to scroll a specific item of LongListSelector
.
Any suggestion or help will be appreciated.