logo
CSharp_Prog_Guide

Элементы проектов

Элементами проектов могут быть файлы, ссылки на библиотеки, подключения к данным и папки в пределах контейнера проекта. Некоторые элементы представляют физические элементы, помещенные в хранилище. Другие элементы могут быть ссылками и указывать на элементы, расположенные в рамках службы, модуля или других компонентов.

Однако большая часть работы, как правило, выполняется с файлами, используемыми для определения составляющих приложения. Способ управления файлами в пределах проекта определяется самим проектом. Файл или набор файлов, необходимый для разработки данного элемента, отображается в Обозревателе решений.

Все продукты среды разработки Visual Studio содержат несколько предварительно определенных шаблонов элементов. Эти шаблоны можно использовать для создания элементов, необходимых для разработки приложения, класса, элемента управления или библиотеки. Например, если необходимо создать форму Windows, проектом будет предложен элемент формы Windows, который можно добавить и настроить. Аналогично, если создается веб-приложение, проектом будет предложен элемент веб-формы.

Using the Visual C# IDE

This section introduces you to the Visual C# integrated development environment (IDE) and describes how it is used in all phases of the development cycle, from setting up a project to distributing the finished application to end users.

Introduction to the IDE

The Visual C# integrated development environment (IDE) is a collection of development tools exposed through a common user interface. Some of the tools are shared with other Visual Studio languages, and some, such as the C# compiler, are unique to Visual C#. The documentation in this section provides an overview of how to use the most important Visual C# tools as you work in the IDE in various phases of the development process.

Note:

If you are developing an ASP.NET 2.0 Web application, you will be using the Visual Web Developer IDE, which is a fully integrated part of Visual Studio. However, if your code-behind pages are in Visual C#, then you will be using the Visual C# Code Editor within Visual Web Developer. Therefore, some topics in this section, such as Designing a User Interface (Visual C#), might not be applicable to Web applications.