DataGrid.CaptionText 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置网格窗口标题的文本。
public:
property System::String ^ CaptionText { System::String ^ get(); void set(System::String ^ value); };
public string CaptionText { get; set; }
member this.CaptionText : string with get, set
Public Property CaptionText As String
属性值
要作为网格的窗口标题显示的字符串。 默认值为空字符串("")。
示例
下面的代码示例设置一个 System.Windows.Forms.DataGrid标题。
if ( dataGrid1->CaptionText == "" )
{
dataGrid1->CaptionText = "Microsoft DataGrid";
}
if(dataGrid1.CaptionText == "")
dataGrid1.CaptionText = "Microsoft DataGrid";
If DataGrid1.CaptionText = "" Then
DataGrid1.CaptionText = "Microsoft DataGrid"
End If