Where can I customize what Visual Studio puts into new class of certain type ? I want to add one line into template for WPF UserControl and Window so the code of new window when you create it looks like this:
public partial class MainWindow : Window {
public MainWindow() {
InitializeComponent();
DataContext = this;
}
}
Instead of what is generated right now:
public partial class MainWindow : Window {
public MainWindow() {
InitializeComponent();
}
}
EDIT: DataContext="{Binding RelativeSource={RelativeSource Self}}" to the XAML template.