CommandField.ShowCancelButton プロパティ
アセンブリ: System.Web (system.web.dll 内)

Dim instance As CommandField Dim value As Boolean value = instance.ShowCancelButton instance.ShowCancelButton = value
/** @property */ public boolean get_ShowCancelButton () /** @property */ public void set_ShowCancelButton (boolean value)
public function get ShowCancelButton () : boolean public function set ShowCancelButton (value : boolean)
CommandField に Cancel ボタンを表示する場合は true。それ以外の場合は false。既定値は true です。

ShowCancelButton プロパティを使用して、CommandField オブジェクトに Cancel ボタンを表示するかどうかを指定します。データ バインド コントロール内の対応するレコードが編集モードまたは挿入モードの場合、CommandField フィールドに Cancel ボタンを表示できます。Cancel ボタンを使用すると、ユーザーは編集操作または挿入操作をキャンセルして、レコードを通常の表示モードに戻すことができます。
CommandField フィールドの ButtonType プロパティが ButtonType.Button または ButtonType.Link に設定されている場合は、CancelText プロパティを使用して、Cancel ボタンに表示するテキストを指定します。または、最初に ButtonType プロパティを ButtonType.Image に設定してから CancelImageUrl プロパティを設定することにより、イメージを表示できます。

ShowCancelButton プロパティを使用して、GridView コントロール内のある行が編集モードのときに Cancel ボタンを非表示にする方法を次のコード例に示します。
<%@ Page language="VB" %> <html> <body> <form runat="server"> <h3>CommandField Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSqlDataSource" autogeneratecolumns="false" datakeynames="CustomerID" runat="server"> <columns> <asp:commandfield showeditbutton="true" showcancelbutton="false" headertext="Edit Controls"/> <asp:boundfield datafield="CustomerID" headertext="Customer ID" /> <asp:boundfield datafield="CompanyName" headertext="Company Name"/> <asp:boundfield datafield="Address" headertext="Address"/> <asp:boundfield datafield="City" headertext="City"/> <asp:boundfield datafield="PostalCode" headertext="ZIP Code"/> <asp:boundfield datafield="Country" headertext="Country"/> </columns> </asp:gridview> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomersSqlDataSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" updatecommand="Update Customers Set CompanyName=@CompanyName, Address=@Address, City=@City, PostalCode=@PostalCode, Country=@Country Where (CustomerID = @CustomerID)" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"> </asp:sqldatasource> </form> </body> </html>
<%@ Page language="C#" %> <html> <body> <form runat="server"> <h3>CommandField Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSqlDataSource" autogeneratecolumns="false" datakeynames="CustomerID" runat="server"> <columns> <asp:commandfield showeditbutton="true" showcancelbutton="false" headertext="Edit Controls"/> <asp:boundfield datafield="CustomerID" headertext="Customer ID" /> <asp:boundfield datafield="CompanyName" headertext="Company Name"/> <asp:boundfield datafield="Address" headertext="Address"/> <asp:boundfield datafield="City" headertext="City"/> <asp:boundfield datafield="PostalCode" headertext="ZIP Code"/> <asp:boundfield datafield="Country" headertext="Country"/> </columns> </asp:gridview> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomersSqlDataSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" updatecommand="Update Customers Set CompanyName=@CompanyName, Address=@Address, City=@City, PostalCode=@PostalCode, Country=@Country Where (CustomerID = @CustomerID)" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"> </asp:sqldatasource> </form> </body> </html>

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


Weblioに収録されているすべての辞書からCommandField.ShowCancelButton プロパティを検索する場合は、下記のリンクをクリックしてください。

- CommandField.ShowCancelButton プロパティのページへのリンク