You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
728 B

using System.Web.UI.WebControls;
using Microsoft.VisualBasic;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics;
using System.ComponentModel;
namespace OT.Controls.Toolbar
{
/// <summary>
/// 工具列按鈕。
/// </summary>
[Serializable()]
public class ToolbarButton : ToolbarItem
{
private string FText = string.Empty;
private string FConfirmMessage = string.Empty;
/// <summary>
/// 文字。
/// </summary>
[Description("文字。"), DefaultValue("")]
public string Text
{
get { return FText; }
set { FText = value; }
}
}
}