Why can't vs code users use toolbars for web forms but only type code?

ANUPRIYA B 1 Reputation point
2022-04-27T17:16:50.057+00:00

I am using C sharp for my practical exam in vs code. Problem is. I can't use toolbars of csharp like vs community in vs code. I can open the form with no toolbar options. How to use the toolbar option in vs code for free?

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,406 questions
.NET CLI
.NET CLI
A cross-platform toolchain for developing, building, running, and publishing .NET applications.
323 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,294 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,581 questions
.NET Runtime
.NET Runtime
.NET: Microsoft Technologies based on the .NET software framework.Runtime: An environment required to run apps that aren't compiled to machine language.
1,125 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Michael Taylor 48,736 Reputation points
    2022-04-27T18:19:14.383+00:00

    Toolbar? What toolbars are you talking about? Do you mean the Toolbox where controls are at and you can drag and drop them onto your form? If so then that is only available in Visual Studio. VS Code does not provide graphical UIs that I'm aware of. You can either create the markup manually (which is what the designer is doing) or you need to switch to Visual Studio. VS Community is a free download so in that regard there are no differences.

    0 comments No comments

  2. Bruce (SqlWork.com) 56,846 Reputation points
    2022-04-30T03:11:22.11+00:00

    One of the major differences of an IDE vs a code editor is the support of visual designers that generate code.

    If it makes you feel better, visual studio no longer has support for a web form designer as it did not support cross browser or responsive design.

    0 comments No comments