### ViewModel with a get-only property Source: https://github.com/levitali/compiledbindings/blob/master/README.md Example of a ViewModel with a get-only property. By default, no code is generated for listening to changes of auto-generated get-only properties to optimize performance. ```csharp class EntityViewModel : INotifyPropertyChanged { public EntityViewModel(EntityModel model) { Model = model; } public EntityModel Model { get; } } ``` -------------------------------- ### Interpolated String with x:Bind Source: https://github.com/levitali/compiledbindings/blob/master/README.md Create formatted strings dynamically using interpolated strings, starting with '$'. Expressions within curly braces can include formatting specifiers. ```xaml