Computer Science, asked by zsiddiqui1786, 21 days ago

Which among these is a form property used to set the way the window will open during run time?​

Answers

Answered by srinivasbatta095
1

Answer:

Be sure you're looking at Windows Forms Designer. In the Visual Studio integrated development environment (IDE), choose the Form1.cs [Design] tab (or the Form1.vb [Design] tab in Visual Basic).

Choose anywhere inside the form Form1 to select it. Look at the Properties window, which should now be showing the properties for the form. Forms have various properties. For example, you can set the foreground and background color, title text that appears at the top of the form, size of the form, and other properties.

Note

If the Properties window doesn't appear, stop your app by choosing the square Stop Debugging button on the toolbar, or just close the window. If the app is stopped and you still don't see the Properties window, on the menu bar,

After the form is selected, find the Text property in the Properties window. Depending on how the list is sorted, you might need to scroll down. Choose Text, type Picture Viewer, and then choose Enter. Your form should now have the text Picture Viewer in its title bar, and the Properties window should look similar to the

Similar questions