Empty Visual Studio Project?

前端 未结 7 671
既然无缘
既然无缘 2021-01-30 12:24

Is there a way to have an empty Project in Visual Studio 2008 or 2010? I do not mean an empty solution, I mean an empty project in a solution. Basically I have a solution with m

7条回答
  •  余生分开走
    2021-01-30 12:58

    Microsoft Visual Studio 2019 Community
    Microsoft Visual Studio 2017 Community
    Microsoft Visual Studio 2015 Community

    for creating in WPF an Empty Project,
    go File > New Project
    then Templates > Visual Basic > Windows > Classic Desktop
    use this reference to find Empty Project for other Languages;

    now to work with this Empty Project, References must to be Add to the Project;
    in Solution Explorer, right-click References then Add Reference...
    select these references: PresentationCore, PresentationFramework, System.Windows, WindowBase;
    then click OK;

    now you Solution Explorer should look like this :

    starting coding and creating your Dynamic Generated WPF Application;
    follow these steps if more References are needed depending on the code used;

提交回复
热议问题