Command.Format プロパティ
アセンブリ: System.Web.Mobile (system.web.mobile.dll 内)

[BindableAttribute(true)] public: property CommandFormat Format { CommandFormat get (); void set (CommandFormat value); }
/** @property */ public CommandFormat get_Format () /** @property */ public void set_Format (CommandFormat value)
Command のレンダリング スタイルを示す CommandFormat 値。

CommandFormat 列挙定数を通じて、2 種類のスタイルにアクセスします。
CommandFormat.Button (既定値) CommandFormat.Link![]() |
---|
Format プロパティは、HttpCapabilitiesBase.JavaScript プロパティが示す JavaScript をサポートするデバイスでのみ CommandFormat.Link 値をサポートします。 |

Format プロパティを使用して、コマンドをリンクまたはボタンとしてレンダリングする方法を次のコード例に示します。
![]() |
---|
次のコード例はシングルファイル コード モデルを使用しており、分離コード ファイルに直接コピーされた場合は正常に動作しない可能性があります。このコード例は、拡張子が .aspx の空のテキスト ファイルにコピーする必要があります。詳細については、「ASP.NET Web ページのコード モデル」を参照してください。 |
<%@ Page Language="VB" Inherits="System.Web.UI.MobileControls.MobilePage" %> <%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %> <script runat="server"> Private Sub cmd_OnItemCommand(ByVal sender As Object, ByVal e As CommandEventArgs) ' Create variables for data Dim txt1 As String = "Today's quote of {0} is {1}" Dim txt2 As String = "Yesterday's quote of {0} was {1}" Dim Val As Integer = (Convert.ToInt32(e.CommandArgument) - 5) ' Set the text values of the labels message1.Text = String.Format(txt1, e.CommandName, _ e.CommandArgument) message2.Text = String.Format(txt2, e.CommandName, Val) End Sub </script> <html > <body> <mobile:form id="form1" runat="server"> <p> <mobile:label id="message1" runat="server"> Click the button for quotes </mobile:label> <mobile:label id="message2" runat="server" /> </p> <mobile:command id="CmdA" Format="Link" onItemCommand="cmd_OnItemCommand" CommandArgument="70" CommandName="ca" runat="server" Text="Company A" /> <mobile:command id="CmdB" Format="Link" onItemCommand ="cmd_OnItemCommand" CommandArgument="25" CommandName="cb" runat="server" Text="Company B" /> <mobile:command id="CmdC" Format="Button" OnItemCommand="cmd_OnItemCommand" CommandArgument="110" CommandName="cc" runat="server" Text="Company C" /> </mobile:form> </body> </html>
<%@ Page Language="C#" Inherits="System.Web.UI.MobileControls.MobilePage" %> <%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %> <script runat="server"> void cmd_OnItemCommand(object sender, CommandEventArgs e) { // Create variables for data string txt1 = "Today's quote of {0} is {1}"; string txt2 = "Yesterday's quote of {0} was {1}"; int val = (Convert.ToInt32(e.CommandArgument) - 5); // Set the text values of the labels message1.Text = String.Format(txt1, e.CommandName, e.CommandArgument); message2.Text = String.Format(txt2, e.CommandName, val); } </script> <html > <body> <mobile:form id="form1" runat="server"> <p> <mobile:label id="message1" runat="server"> Click the button for quotes </mobile:label> <mobile:label id="message2" runat="server" /> </p> <mobile:command id="CmdA" Format="Link" onItemCommand ="cmd_OnItemCommand" CommandArgument="70" CommandName="ca" runat="server" Text="Company A" /> <mobile:command id="CmdB" Format="Link" onItemCommand ="cmd_OnItemCommand" CommandArgument="25" CommandName="cb" runat="server" Text="Company B" /> <mobile:command id="CmdC" Format="Button" OnItemCommand ="cmd_OnItemCommand" CommandArgument="110" CommandName="cc" runat="server" Text= "Company C" /> </mobile:form> </body> </html>

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


CommandFormat 列挙体
アセンブリ: System.Web.Mobile (system.web.mobile.dll 内)

Public Enumeration CommandFormat



Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- Command.Formatのページへのリンク