Form, propriété (Common)
Permet d'accéder au formulaire conteneur.
public System.Web.UI.MobileControls.Form Form {
get
}
Héritage
La liste suivante répertorie les classes qui héritent de la propriété Form de la classe de base MobileControl.
AdRotator, classe | PagedControl, classe |
Calendar, classe | Panel, classe |
Command, classe | PhoneCall, classe |
CompareValidator, classe | RangeValidator, classe |
CustomValidator, classe | RegularExpressionValidator, classe |
Form, classe | RequiredFieldValidator, classe |
Image, classe | SelectionList, classe |
Label, classe | TextBox, classe |
Link, classe | TextControl, classe |
List, classe | TextView, classe |
ObjectList, classe | ValidationSummary, classe |
Exemple
L'exemple suivant montre comment utiliser la propriété Form pour déterminer si le formulaire actif est un formulaire particulier dans l'application Web Mobile ASP.NET.
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If (ActiveForm.ID.ToString() = Form3.Form.ID.ToString()) Then
Dim Label1 As Label = New Label()
Label1.Text = "Form.ID is Form3"
Label1.Alignment = Alignment.Center
Form3.Form.Controls.Add(Label1)
End If
[C#]
private void Page_Load(object sender, System.EventArgs e)
{
if (ActiveForm.ID == Form3.Form.ID)
{
Label Label1 = new Label();
Label1.Text = "Form.ID is Form3";
Label1.Alignment = Alignment.Center;
Form3.Form.Controls.Add(Label1);
}
}