Data control binding with string builder
Which controls are used to bind the string builder values except text box.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
RanjithKumar chiguruvadaPosted Sep 18, 2012, 9:33 AM
we can bind a StringBuilder to Textblock Text in wpf as follows
"{Binding Path=rkval, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
public StringBuilder rkval{ get; set; }
StringBuilder rkval= new StringBuilder(1000);