更改新窗口和用户控件 (WPF) 的默认 Visual Studio 模板
在哪里可以自定义 Visual Studio 将哪些内容放入特定类型的新类中?我想在 WPF UserControl
和 Window
的模板中添加一行,以便创建新窗口时的代码如下所示:
public partial class MainWindow : Window {
public MainWindow() {
InitializeComponent();
DataContext = this;
}
}
而不是现在生成的代码:
public partial class MainWindow : Window {
public MainWindow() {
InitializeComponent();
}
}
< strong>编辑: DataContext="{BindingrelativeSource={RelativeSource Self}}"
到 XAML 模板。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您实际上可以创建自己的模板,然后使用它们代替默认模板。只需创建一个新项目并根据需要配置文件即可。然后,点击文件>导出模板。您将选择项目模板,然后选择要用作模板的文件(在本例中为 xaml 和 xaml.cs 文件)。然后按照向导操作,将其创建的 .zip 文件拖放到 Visual Studio 安装的正确目录中,然后单击“Viola!”当您点击“添加”>新项目...>>将显示您的模板。
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.