MobileListItem.Implicit(String to MobileListItem) Operator
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zapewnia niejawną konwersję z elementu na String .MobileListItem Ten interfejs API jest nieaktualny. Aby uzyskać informacje o sposobie tworzenia aplikacji mobilnych ASP.NET, zobacz Mobile Apps & Sites with ASP.NET (Aplikacje mobilne & z ASP.NET).
public:
static operator System::Web::UI::MobileControls::MobileListItem ^(System::String ^ s);
public static implicit operator System.Web.UI.MobileControls.MobileListItem (string s);
static member op_Implicit : string -> System.Web.UI.MobileControls.MobileListItem
Public Shared Widening Operator CType (s As String) As MobileListItem
Parametry
- s
- String
Ciąg do konwersji.
Zwraca
Element MobileListItem z Text ustawioną wartością .String
Przykłady
Poniższy przykład kodu tworzy wiele MobileListItem obiektów przy użyciu niejawnej konwersji z ciągów i dodaje je do kontrolki List .
<%@ Page Language="C#"
Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
MobileListItem mi;
// Use implicit conversion to create
// new MobileListItem objects from strings
mi = "One";
List1.Items.Add(mi);
mi = "Two";
List1.Items.Add(mi);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:form id="form1" runat="server">
<mobile:List ID="List1" Runat="server">
</mobile:List>
</mobile:form>
</body>
</html>
<%@ Page Language="VB"
Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, _
ByVal e As System.EventArgs)
Dim mi As MobileListItem
' Use implicit conversion to create
' new MobileListItem objects from strings
mi = "One"
List1.Items.Add(mi)
mi = "Two"
List1.Items.Add(mi)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:form id="form1" runat="server">
<mobile:List ID="List1" Runat="server" />
</mobile:form>
</body>
</html>
Uwagi
MobileListItem Obiekt utworzony przez konwersję niejawną używa danych wejściowych ciągu jako wartości właściwościText.