using System;
using Shared.Common;
namespace Shared.Phone.UserCenter
{
///
/// 做成一个Tip控件
///
public class TipViewControl : Tip
{
///
/// 做成一个Tip控件
///
/// 文本信息
/// 最大宽度
/// 关闭时间(秒)
public TipViewControl(string text, int maxWidth = 1000, int closeTime = 3)
{
this.MaxWidth = Application.GetRealWidth(maxWidth);
this.Direction = AMPopTipDirection.None;
this.CloseTime = closeTime;
this.Text = text;
}
///
/// 把控件显示出来
///
public void ShowView()
{
this.Show(CommonPage.Instance);
}
}
}