更改新窗口和用户控件 (WPF) 的默认 Visual Studio 模板

发布于 2024-11-04 03:43:27 字数 554 浏览 1 评论 0原文

在哪里可以自定义 Visual Studio 将哪些内容放入特定类型的新类中?我想在 WPF UserControlWindow 的模板中添加一行,以便创建新窗口时的代码如下所示:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柏林苍穹下 2024-11-11 03:43:27

您实际上可以创建自己的模板,然后使用它们代替默认模板。只需创建一个新项目并根据需要配置文件即可。然后,点击文件>导出模板。您将选择项目模板,然后选择要用作模板的文件(在本例中为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文