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.

link|improve this question

73% accept rate
feedback

1 Answer

You can actually make your own templates and then use those instead of the default template. Simply make a new project and configure your files as you want them. Then, hit File > Export Template. You will choose Item template, then select the files you want to use as the template (in this case, your xaml and xaml.cs files). Then follow the wizard and drop the .zip file it creates in the right directory of your Visual Studio installation, and then 'Viola!' when you hit Add > New Item... > Your Template will be displayed.

link|improve this answer
+1 Thank you that looks good. But I want actually replace the templates that are there by default. There is already a lot of templates and I don't want to have 2 templates for the same think. I'll choose the wrong one and then wander why is it not working. – drasto Apr 28 '11 at 21:24
Is it possible to do it in the same way ? I mean to replace the default templates ? – drasto Apr 28 '11 at 21:31
I believe so, but I wouldn't recommend it. Custom templates are easier to add / remove. – Tejs Apr 28 '11 at 21:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.