Question: Please code the following in C#. I will post a positive review for answering. Thanks! CIS 345 - Business Information Systems Development II Assignment 5:
Please code the following in C#. I will post a positive review for answering. Thanks!







CIS 345 - Business Information Systems Development II Assignment 5: Product Information Manager See Blackboard for Due Date Learning Outcomes 1.1. Implement Windows Form Applications using Multiple Forms 1.2. Implement Custom Events using Delegates 1.3. Pass data between forms Program Overview Create a Windows application that manages a list of Products. Products have an id, name, price, and quantity. The main application window should show a list of product names and a detail view in the same window should show the product name and id. Clicking a Details button should launch a new window, which should show all the details for the product The main window of the application should have a File menu. Clicking the New menu item should launch a new window for data entry. The data entry window should allow users to enter product details and create a new product. This new product should get added to the list of products being shown in the main window. You can have 3 forms for this application, one for the main window, one for data entry, and one to display product details. However, a slightly more sophisticated approach would be to use the same form for data entry and displaying product details since the two forms largely have the same controls. This would be established by hiding controls and/or changing the control Text to adapt to a specific need CIS 345 - Business Information Systems Development II Assignment 5: Product Information Manager See Blackboard for Due Date Learning Outcomes 1.1. Implement Windows Form Applications using Multiple Forms 1.2. Implement Custom Events using Delegates 1.3. Pass data between forms Program Overview Create a Windows application that manages a list of Products. Products have an id, name, price, and quantity. The main application window should show a list of product names and a detail view in the same window should show the product name and id. Clicking a Details button should launch a new window, which should show all the details for the product The main window of the application should have a File menu. Clicking the New menu item should launch a new window for data entry. The data entry window should allow users to enter product details and create a new product. This new product should get added to the list of products being shown in the main window. You can have 3 forms for this application, one for the main window, one for data entry, and one to display product details. However, a slightly more sophisticated approach would be to use the same form for data entry and displaying product details since the two forms largely have the same controls. This would be established by hiding controls and/or changing the control Text to adapt to a specific need
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
