I have a textbox which is binded to a property “display” of Viewmodel class
My current logic:
I have a keyboard whenever key is pressed the key is appending at the end of existing string text box.
What I want: when key is pressed, based on the cursor position my key should be appended(not at the end) EX: “Stack” is a string. My current cursor position is after “S”, if I press the key “G”, property “display” of Viewmodel class should have “SGtack” (textbox shows “SGtack” but “Display” is still StackG)