Problem imitating VS output window's textbox with a WPF TextBox - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:34:08Z http://stackoverflow.com/feeds/question/977477 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/977477/problem-imitating-vs-output-windows-textbox-with-a-wpf-textbox 1 Problem imitating VS output window's textbox with a WPF TextBox Thibaut Tollemer 2009-06-10T18:49:14Z 2009-06-11T09:39:32Z <p>In Visual Studio's output window, you can position your text caret at the end of the output so that the textbox scrolls down automatically when new text is logged. And when the caret is not at the end, it won't scroll down. I would like to mimic this with a WPF TextBox.</p> <p>I was able to do it, but only if the TextBox is not read-only. That is because I need a caret, and none is displayed when you have a read-only TextBox.</p> <p>The problem is my textbox is editable (with copy/cut/paste commands and typing), but I don't want to.</p> <p>Is there a clean solution? I would prefer not to block all keys since I have CommandBindings that need to work when the TextBox is focused.</p> <p>Thanks</p> http://stackoverflow.com/questions/977477/problem-imitating-vs-output-windows-textbox-with-a-wpf-textbox/980226#980226 0 Answer by bitbonk for Problem imitating VS output window's textbox with a WPF TextBox bitbonk 2009-06-11T09:39:32Z 2009-06-11T09:39:32Z <p>I guess you wont get around sublassing the TextBox and block all keyboardinput that would change the text. </p>