I am thinking about the following issue.
If I have for example a textbox/slider/combobox which value is bound to something like
<TextBox Name=textBox Text="{Binding Text}"/>
and then do
textBox.Text = "something"
Is it going to “override” the binding or is binding “stronger” then explicit assignment
No, the binding will be overwritten.