My Question is purely related to XAML and not code behind.
Can a WPF Button Content be same as its Name.
One way of doing it is like
<Button Name="button1" Content="button1">
But i have 250 such buttons and changing both button name and content is like changing at 500 places. so is there a way where i have to change only the button name and content reflects that value.
<Button Name = "button1" Content ={??????}>
Data binding:
(Read the reference, data-binding is an integral part of WPF)