using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone { /// /// 做成一个普通的单击按钮✩ /// public class NormalClickButton : ClickButtonCommon { /// /// 做成一个普通的单击按钮 /// /// 宽度 /// 高度 /// 是否计算真实值 public NormalClickButton(int i_Width, int i_Height, bool real = false) { this.InitSize(i_Width, i_Height, real); } } }