Howto bind TextBox control to a StringBuilder instance? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:16:41Z http://stackoverflow.com/feeds/question/413675 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/413675/howto-bind-textbox-control-to-a-stringbuilder-instance 1 Howto bind TextBox control to a StringBuilder instance? ttobiass 2009-01-05T16:30:34Z 2009-01-06T10:12:45Z <p>I would like several textboxes to react to changes of an underlying string. So if I were to change the content of the string, all those textboxes would change their content too.</p> <p>Now, I can't use the String type for that as it is immutable. So I went with StringBuilder. But the Text property of a TextBox object only takes String.</p> <p>Is there an easy way to "bind" the StringBuilder object to the Text property of a TextBox?</p> <p>Many thanks!</p> <p>PS: The TextBox is currently WPF. But I might switch to Windows Forms because of Mono.</p> http://stackoverflow.com/questions/413675/howto-bind-textbox-control-to-a-stringbuilder-instance/413680#413680 0 Answer by Tom Anderson for Howto bind TextBox control to a StringBuilder instance? Tom Anderson 2009-01-05T16:32:10Z 2009-01-05T16:32:10Z <p>You could inherit the text box and override the Text property to retrieve and write to the string builder.</p> http://stackoverflow.com/questions/413675/howto-bind-textbox-control-to-a-stringbuilder-instance/413686#413686 1 Answer by Ray Booysen for Howto bind TextBox control to a StringBuilder instance? Ray Booysen 2009-01-05T16:33:03Z 2009-01-05T16:33:03Z <p>You could always expose a property that's getter returns the ToString() of the Stringbuilder. The form could then bind to this property.</p> <pre><code>private StringBuilder _myStringBuilder; public string MyText { get { return _myStringBuilder.ToString(); } } </code></pre> http://stackoverflow.com/questions/413675/howto-bind-textbox-control-to-a-stringbuilder-instance/413689#413689 -2 Answer by Giraffe for Howto bind TextBox control to a StringBuilder instance? Giraffe 2009-01-05T16:33:39Z 2009-01-05T16:33:39Z <p>You can bind the Text property of a TextBox to a string property... The String object is immutable, but a variable of type String is perfectly mutable...</p> <pre><code>string mutable = "I can be changed"; mutable = "see?"; </code></pre> <p>You would need to wrap it up in an object that implements INotifyPropertyChanged, however.</p> http://stackoverflow.com/questions/413675/howto-bind-textbox-control-to-a-stringbuilder-instance/413690#413690 0 Answer by Kon M for Howto bind TextBox control to a StringBuilder instance? Kon M 2009-01-05T16:34:36Z 2009-01-05T16:34:36Z <p>Simply put, no. Text property only takes a String. So whatever the source, you'll have to convert it to a String.</p> <p>To enable you to easily set it once for many textboxes, you can have a class property that always sets all textbox values...</p> <pre><code>public string MyString { get { ///... } set { textbox1.Text = value; textbox2.Text = value; //... } } </code></pre> http://stackoverflow.com/questions/413675/howto-bind-textbox-control-to-a-stringbuilder-instance/414716#414716 0 Answer by Chris Brandsma for Howto bind TextBox control to a StringBuilder instance? Chris Brandsma 2009-01-05T22:21:37Z 2009-01-05T22:21:37Z <p>I would wrap the StringBuilder in a custom class with an Add method, Text method, and an OnChanged event.</p> <p>Wire up the Add method such that when it is called it adds the text to the StringBuilder instance and fires the event. Then when the even fires, use the Text method to do a ToString on the StringBuilder.</p> <p>public class StringBuilderWrapper { private StringBuilder _builder = new StringBuilder(); private EventHandler TextChanged; public void Add(string text) { _builder.Append(text); if (TextChanged != null) TextChanged(this, null); } public string Text { get { return _builder.ToString(); } } }</p> http://stackoverflow.com/questions/413675/howto-bind-textbox-control-to-a-stringbuilder-instance/416009#416009 3 Answer by Giraffe for Howto bind TextBox control to a StringBuilder instance? Giraffe 2009-01-06T10:12:45Z 2009-01-06T10:12:45Z <p>It seems my previous answer wasn't worded very well, as many people misunderstood the point I was making, so I will try again taking into account people's comments.</p> <p>Just because a String object is immutable does not mean that a variable of type String cannot be changed. If an object has a property of type String, then assigning a new String object to that property causes the property to change (in my original answer, I referred to this as the variable mutating, apparently some people do not agree with using the term "mutate" in this context).</p> <p>The WPF databinding system can bind to this property. If it is notified that the property changes through INotifyPropertyChanged, then it will update the target of the binding, thus allowing many textboxes to bind to the same property and all change on an update of the property without requiring any additional code.</p> <p>Therefore, there is no need to use StringBuilder as the backing store for the property. Instead, you can use a standard String property and implement INotifyPropertyChanged.</p> <pre><code>public class MyClass : INotifyPropertyChanged { private string myString; public string MyString { get { return myString; } set { myString = value; OnPropertyChanged("MyString"); } } protected void OnPropertyChanged(string propertyName) { var handler = PropertyChanged; if (handler != null) { handler(this, new PropertyChangedEventArgs(propertyName)); } } #region INotifyPropertyChanged Members public event PropertyChangedEventHandler PropertyChanged; #endregion } </code></pre> <p>WPF can bind to this and will automatically pick up and changes made in the value of the <em>property</em>. No, the String object has not mutated, but the String property <em>has</em> mutated (or changed, if you prefer).</p>