what is the best practice to show text label (e.g. \"Name\") with the TextBox in WPF?
I want a label \"Name\" above the TextBox and many similar Labels/TextBoxes.
Should I p
Create a class X that holds label and text that implements INotifyPropertyChanged. Make an ObservableCollection. This will be the ItemsSource for ListBox, ComboBox, StackPanel.. whatever you choose. Create a DataTemplate that displays X the way you want it to.