Proprietà Form (Common)
Consente l'accesso al form contenitore.
public System.Web.UI.MobileControls.Form Form {
get
}
Ereditarietà
Di seguito è riportato un elenco delle classi che ereditano la proprietà Form dalla classe base MobileControl.
Classe 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 |
Esempio
Nell'esempio riportato di seguito viene mostrato come utilizzare la proprietà Form per determinare se il form attivo è un form particolare dell'applicazione 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);
}
}