Find Window Form App design view on Visual Studio

SalimMuvak 11 Reputation points
2020-08-04T04:18:07.057+00:00

Hi,

  1. Months ago, I downloaded a sample project from github, then I make a few changes to the UI of a WFA in that project (add some buttons, labels, ...). The problem is: I'm trying to re open the WFA design view to make some modification to that UI, but I cannot find the design file in the entire project. However, when I run the WFA, that UI window still pops up and runs normally, so it must be somewhere, but the project is too large so I cannot handle to find in folder. So is there anyway to trace the design file from my running WFA?
  2. I think most of the code line have error like: - Predefined type "System.String/Void/Boolean/..." is not defined or imported. - The type or namespace name "Task" could not be found (are you missing a using directive or an assembly reference?) If I just ignore those errors while debugging, the wfa still runs, but can you suggest me some way to solve it? Thank you
Windows Forms
Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
1,821 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Leon Laude 85,646 Reputation points
    2020-08-04T07:02:52.187+00:00

    Hi,

    Visual Studio is currently not supported in the Q&A forums, the supported products are listed over here https://learn.microsoft.com/en-us/answers/products (more to be added later on).

    You can ask the experts in the dedicated Visual Studio forum over here:
    https://developercommunity.visualstudio.com/spaces/8/index.html

    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio

    ----------

    (If the reply was helpful please don't forget to accept as answer, thank you)

    Best regards,
    Leon


  2. Daniel Zhang-MSFT 9,611 Reputation points
    2020-08-04T07:08:17.117+00:00

    Hi SalimMuvak-7300,
    First, you need to check the target framework of your project by following steps:
    Right-click Project -> Properties ->Application.
    If it is a Windows Forms App(.Net Core), there is no designer by default.
    The .NET Core Windows Forms designer is available with the Visual Studio 16.5 Preview 1.
    So you can try to update Visual Studio to Visual Studio 16.5 Preview 1 or a later version.
    More details you can refer to this blog.
    If it is .Net framework, you can open designer view via the steps below:
    1.Open the solution explorer (View -> Solution Explorer, or Ctrl+W, S).
    2.Select one of the mentioned classes like form or user control.
    3.Right-click it and select View Designer (or simply Shift+F7). That will move you to the designer view.
    For first error, the cause of the error is mostly missing mscorlib.dll.
    And you can try the following suggestions to solve it.
    1.Delete bin and obj file and rebuild your project.
    2.Run dotnet restore command via Visual Studio -> Tools -> NuGet Package Manager -> Package Manager Console, then rebuild solution.
    For second error, are you looking for the Task in System.Threading.Tasks?
    Full reference is System.Threading.Tasks.Task, or for a using System.Threading.Tasks in your project
    Best Regards,
    Daniel Zhang

    0 comments No comments