如何替换空的Designer.cs文本

时间:2018-05-22 13:06:04

标签: c# replace visual-studio-2017

问候所有人,这是我的第一个问题,我一直在尝试搜索有关我想要问的问题,并尝试其他问题的一些提示,但到目前为止还没有运气。所以我使用dotPeek反编译了一个旧项目,因为我手动创建它们的表单没有Designer.cs文件,我清空文件。然后我想用空白表单Designer.cs代码替换所有Designer.cs文件的内容(这是空的,完全没有代码)(我为visual studio安装了多行查找/替换扩展,是的,我使用visual studio 2017)但我找不到如何从替换中替换空字符。有没有办法或者我应该手动完成吗?我真的希望有一种方法,因为文件很多(差不多400个文件)。或者是否有任何解决方案可以自动将设计器的代码与Designer.cs文件分开? 我想使用此代码填充所有空的Designer.cs文件

namespace winapp
{
partial class XtraForm1
{
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing)
    {
        if (disposing && (components != null))
        {
            components.Dispose();
        }
        base.Dispose(disposing);
    }

    #region Windows Form Designer generated code

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        this.components = new System.ComponentModel.Container();
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.Text = "XtraForm1";
    }

    #endregion
}

}

0 个答案:

没有答案