using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone { /// /// 做成一个显示图片的普通控件✩ /// public class PicViewControl : ButtonBase { /// /// 做成一个显示图片的普通控件 /// /// 宽度 /// 高度 /// 是否计算真实值 public PicViewControl(int i_Width, int i_Height, bool real = true) { this.InitPictrueSize(i_Width, i_Height, real); } } }