Question: PART A First, create the interface in Visual C. NET. PLace a TabControl on your form that has three tabs. One tab should be used

 PART A First, create the interface in Visual C. NET. PLace

PART A First, create the interface in Visual C. NET. PLace a TabControl on your form that has three tabs. One tab should be used for selecting the graph type and providing the parameters of the equation. A second tab is used for selecting thex- and y-axis bounds. The final tab is used for displaying the graph. Figure 1 shows an example of what sample program looks like when running. Recall that a parabola is of the form y=ax2 + bx + c. Parabola Figure 1 - Sample program images PART B: The user is now expected to enter the parameters using the TextBoxes provided. After they enter the parameters for the parabola, they should click the Graph tab to graph the function. Write the code that will execute when the graph tab is selected. When a tab of a TabControl is selected, it triggers a which index was selected and perform the appropriate task based on that information. Remember that the Selectedindex starts at 0 event. You must use an If or Select Case statement to determine There are two major tasks that are performed when the graph tab is selected. First, all the labels on this graph need to be updated. These labels are used to display the maximum and minimum axis values, the number of data points graphed, and the equation that is being graphed (the parabola with parameters plugged in, .e. -2x*2 3x4). In order to keep your code organized, you should write a method to perform this task. You should also write a method to fill the data in your graph. When this method is executed, the program will set the axis on the Microsoft Chart Control according to what they have selected and graph the function. To set the minimum and maximum values for the Y-axis, you can access the chart's ChartArea: EGR 1400 HANNA SIADAT mychazt.chartAreaa 101 .Ax83 [1.xinitunCLman2 ; mychazt.chartAreaa 101 .Ax83 [1]MaxizunCLnax3 ; The Axes[1] refers to the Y-axis, Axes[0] would refer to the X-axis properties. Don't just copy and paste the code above. Type it in yourself so that you can see the options come up as you type. Notice the options. Make sure to set both axes scales. Using a FOR loop, you can iterate for each of data points that you will plot (glven by the value entered by the user for the number of data points). You will need to use the x-axis range and number of data points to come up with a variable to plug into the function that you are graphing. interface. Test and debug Be creative and add your own style to the user everything works, demonstrate your program to your lab mentor. sign and date your lab to receive credit. your program. When Be sure that you have your lab mentor PART A First, create the interface in Visual C. NET. PLace a TabControl on your form that has three tabs. One tab should be used for selecting the graph type and providing the parameters of the equation. A second tab is used for selecting thex- and y-axis bounds. The final tab is used for displaying the graph. Figure 1 shows an example of what sample program looks like when running. Recall that a parabola is of the form y=ax2 + bx + c. Parabola Figure 1 - Sample program images PART B: The user is now expected to enter the parameters using the TextBoxes provided. After they enter the parameters for the parabola, they should click the Graph tab to graph the function. Write the code that will execute when the graph tab is selected. When a tab of a TabControl is selected, it triggers a which index was selected and perform the appropriate task based on that information. Remember that the Selectedindex starts at 0 event. You must use an If or Select Case statement to determine There are two major tasks that are performed when the graph tab is selected. First, all the labels on this graph need to be updated. These labels are used to display the maximum and minimum axis values, the number of data points graphed, and the equation that is being graphed (the parabola with parameters plugged in, .e. -2x*2 3x4). In order to keep your code organized, you should write a method to perform this task. You should also write a method to fill the data in your graph. When this method is executed, the program will set the axis on the Microsoft Chart Control according to what they have selected and graph the function. To set the minimum and maximum values for the Y-axis, you can access the chart's ChartArea: EGR 1400 HANNA SIADAT mychazt.chartAreaa 101 .Ax83 [1.xinitunCLman2 ; mychazt.chartAreaa 101 .Ax83 [1]MaxizunCLnax3 ; The Axes[1] refers to the Y-axis, Axes[0] would refer to the X-axis properties. Don't just copy and paste the code above. Type it in yourself so that you can see the options come up as you type. Notice the options. Make sure to set both axes scales. Using a FOR loop, you can iterate for each of data points that you will plot (glven by the value entered by the user for the number of data points). You will need to use the x-axis range and number of data points to come up with a variable to plug into the function that you are graphing. interface. Test and debug Be creative and add your own style to the user everything works, demonstrate your program to your lab mentor. sign and date your lab to receive credit. your program. When Be sure that you have your lab mentor

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!