<TextBox Name="txtSearch" Margin="0,0,0,0" Height="20" Width="215" AcceptsReturn="True" TextChanged="txtSearch_TextChanged" ></TextBox>
what’s the difference between doing binding Path and Binding ElementName :
<TextBox Name="txtFind" Text="{Binding Path=txtSearch}"></TextBox>
and
<TextBox Name="txtFind" Text="{Binding ElementName=txtSearch}"></TextBox>
One references the name of an object, the other references the property of that object. What you should have is something like :
Which makes more sense.