BP130: Don't bind things that can be set statically
Binding always have some overhead so if you don't necessary need it, don't use it.
For example, setting Button.Text = "Accept" has less overhead than binding Button.Text to a ViewModel string property with value "Accept".