ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/NormalControls/PicViewControl.cs
New file @@ -0,0 +1,23 @@ using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone.UserCenter { /// <summary> /// 做成一个显示图片的普通控件✩ /// </summary> public class PicViewControl : ButtonBase { /// <summary> /// 做成一个显示图片的普通控件 /// </summary> /// <param name="i_Width">宽度</param> /// <param name="i_Height">高度</param> /// <param name="real">是否计算真实值</param> public PicViewControl(int i_Width, int i_Height, bool real = true) { this.InitPictrueSize(i_Width, i_Height, real); } } }