What are Form properties? - DOT.NET

What are Form properties?

The common properties that all of the controls on form have are:
NamesDescription
FontGets or sets the font of the text displayed by the control.
ForeColorGets or sets the foreground color of the control.
DefaultSizeGets the default size of the control.
TabIndexGets or sets the tab order of the control within its container.
VisibleGets or sets a value indicating whether the control and all its child controls are displayed.
WidthGets or sets the width of the control.
BackColorGets or sets the background color for the control.
EnabledGets or sets a value indicating whether the control can respond to user interaction.
FocusedGets a value indicating whether the control has input focus.
What are Form methods that control its lifecycle? - DOT.NET
First a form object is created using the constructor. The form is then loaded and then its layout is initialized....
What is manifest? - DOT.NET
An Assembly data like version, scope, security information (strong name),etc is stored in manifest.....
What is the use of SN.EXE? - DOT.NET
SN stands for Strong Name. Strong Name Tool (Sn.exe) is used to sign assemblies with strong names......
Post your comment