MobileListItem.Implicit(String to MobileListItem) Operátor
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Poskytuje implicitní převod z na StringMobileListItem. Toto rozhraní API je zastaralé. Informace o vývoji ASP.NET mobilních aplikací najdete v tématu Mobilní aplikace & Weby s 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
Řetězec, který chcete převést.
Návraty
A MobileListItem s nastaveným Text na zadanou Stringhodnotu .
Příklady
Následující příklad kódu vytvoří více MobileListItem objektů pomocí implicitního převodu z řetězců a přidá je do List ovládacího prvku.
<%@ 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>
Poznámky
Objekt MobileListItem vytvořený implicitním převodem používá řetězcový vstup jako hodnotu své Text vlastnosti.