To change UI content in runtime, you can use Binding. When binded property is changed from the code, it will be displayed to the UI.
<TextBlock Text="{Binding Title}"/>
To notify UI about changes, property must raise PropertyChanged event from INotifyPropertyChanged interface or ...