Can i use static string value and bind to RichtextBox.....?
I have a rich text box and should be updated.... the proj is byuilding fine.. but unable to manage to get the string in the RichtextBox
this is the code: its not displaying content
<RichTextBox Name="comments_storeviewing" Grid.Row="2" Grid.Column="2" Width="300" Height="60" ScrollViewer.VerticalScrollBarVisibility="Disabled" />
<my:BindingProxy In="{Binding}" Out="{Binding ElementName=comments_storeviewing, Path=strBind}" />
String strBind;
strBind= "ABCDEFGHIJKL";
content is not displaying in richtextBox...
plz helpme Urg