This Recipe Book application is a Windows Forms desktop application designed to help users manage their recipes efficiently. Users can add, edit, and delete recipes, each containing a name, category, ingredients, and a description. The application allows the user to input a list of ingredients for each recipe and categorize them appropriately.
- Add a new recipe with a name, category, ingredients, and description.
- Edit an existing recipe, including its name, category, ingredients, and description.
- Delete a selected recipe from the list.
- View detailed information about a recipe, including its ingredients and description.
- C#: The primary programming language used for this application.
- .NET 8: Utilized for building the Windows Forms application.
- Windows Forms: Used for designing the graphical user interface (GUI).
- MainForm: The main form of the application.
- IngredientsForm: The form for adding and managing ingredients.
-
Recipe.cs: Represents a recipe.
-
RecipeManager.cs: Manages the list of recipes.
-
FoodCategory.cs: Enum representing food categories.
-
Clone the repository:
git clone https://github.com/Umid0vic/RecipeBook.git
-
Open the solution in Visual Studio:
RecipeBook.sln
-
Build the solution:
- Go to
Build
->Build Solution
or pressCtrl+Shift+B
.
- Go to
-
Run the application:
- Press
F5
or go toDebug
->Start Debugging
.
- Press