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