using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone.UserCenter
{
///
/// 做成一个简单的,只是用来显示提示信息,并且放在界面上的控件(正常文本字体颜色,文字居中)
///
public class MsgViewControl : ButtonCommon
{
///
/// 做成一个简单的,只是用来显示提示信息,并且放在界面上的控件(正常文本字体颜色,文字居中)
///
/// 宽度
/// 高度
/// 是否计算真实值
public MsgViewControl(int i_Width, int i_Height, bool real = false)
{
this.InitSize(i_Width, i_Height, real);
this.TextAlignment = TextAlignment.Center;
}
///
/// 做成一个简单的,只是用来显示提示信息,并且放在界面上的控件(正常文本字体颜色,文字居中),
/// 高度为标准高度
///
/// 宽度
/// 是否计算真实值
public MsgViewControl(int i_Width, bool real = false)
{
this.InitSize(i_Width, real);
this.TextAlignment = TextAlignment.Center;
}
}
}