using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone.UserCenter { /// /// 做成一个存在于弹窗界面最下面的能够单击的按钮: /// 自身拥有点亮功能,正常字体,无背景色,文字居中 /// public class DialogClickButton : ClickButtonCommon { /// /// 做成一个存在于弹窗界面最下面的能够单击的按钮: /// 自身拥有点亮功能,正常字体,无背景色,文字居中 /// /// 宽度 /// 高度 /// 是否计算真实值 public DialogClickButton(int i_Width, int i_Height, bool real = false) { this.InitSize(i_Width, i_Height, real); this.BackgroundColor = 0; this.TextColor = UserCenterColor.Current.TextColor; this.UseClickStatu = true; } } }