CheckBoxField.Text Свойство
Определение
Получает или задает подпись к каждому флажку в объекте CheckBoxField.Gets or sets the caption to display next to each check box in a CheckBoxField object.
public:
virtual property System::String ^ Text { System::String ^ get(); void set(System::String ^ value); };
public virtual string Text { get; set; }
member this.Text : string with get, set
Public Overridable Property Text As String
Значение свойства
Подпись к каждому флажку в объекте CheckBoxField.The caption displayed next to each check box in the CheckBoxField. Значение по умолчанию — пустая строка ("").The default is an empty string ("").
Примеры
В следующем примере кода показано использование Text свойства для задания пользовательского заголовка для флажков в CheckBoxField объекте в GridView элементе управления.The following code example demonstrates how to use the Text property to specify a custom caption for the check boxes in a CheckBoxField object in a GridView control.
<%@ Page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>CheckBoxField Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>CheckBoxField Example</h3>
<asp:gridview id="AuthorsGridView"
datasourceid="AuthorsSqlDataSource"
autogeneratecolumns="False"
runat="server">
<columns>
<asp:boundfield datafield="au_lname"
headertext="Last Name"/>
<asp:checkboxfield datafield="contract"
text="Contract"
headertext="Contract"/>
</columns>
</asp:gridview>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Pubs sample database. -->
<asp:sqldatasource id="AuthorsSqlDataSource"
selectcommand="SELECT [au_lname], [au_fname], [address], [city], [state], [zip], [contract] FROM [authors]"
connectionstring="server=localhost;database=pubs;integrated security=SSPI"
runat="server">
</asp:sqldatasource>
</form>
</body>
</html>
<%@ Page language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>CheckBoxField Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>CheckBoxField Example</h3>
<asp:gridview id="AuthorsGridView"
datasourceid="AuthorsSqlDataSource"
autogeneratecolumns="False"
runat="server">
<columns>
<asp:boundfield datafield="au_lname"
headertext="Last Name"/>
<asp:checkboxfield datafield="contract"
text="Contract"
headertext="Contract"/>
</columns>
</asp:gridview>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Pubs sample database. -->
<asp:sqldatasource id="AuthorsSqlDataSource"
selectcommand="SELECT [au_lname], [au_fname], [address], [city], [state], [zip], [contract] FROM [authors]"
connectionstring="server=localhost;database=pubs;integrated security=SSPI"
runat="server">
</asp:sqldatasource>
</form>
</body>
</html>
Комментарии
TextСвойство используется для вывода подписи рядом с каждым флажком в CheckBoxField объекте.The Text property is used to display a caption next to each check box in a CheckBoxField object. Если Text для свойства задана пустая строка, заголовок не отображается.If the Text property is set to an empty string, no caption is displayed.
Примечание
Все флажки в CheckBoxField объекте имеют одинаковый заголовок.All check boxes in the CheckBoxField object share the same caption.
Значение этого свойства, если оно задано, можно автоматически сохранить в файл ресурсов с помощью средства конструктора.The value of this property, when set, can be saved automatically to a resource file by using a designer tool. Дополнительные сведения см. в статьях LocalizableAttribute и Глобализация и локализация.For more information, see LocalizableAttribute and Globalization and Localization.