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.InitAvgSize(i_Width, i_Height, real);
|
}
|
}
|
}
|