using Shared;
using System;
using System.Collections.Generic;
using System.Text;
namespace HDL_ON.Stan
{
///
/// RowLayout的最初原型
///
public class RowLayoutBase : RowLayout
{
#region ■ 初始化_____________________________
///
/// FrameLayout的最初原型
///
public RowLayoutBase()
{
}
#endregion
#region ■ 一般方法___________________________
///
/// 计算图片的真实高宽度
///
///
///
public int GetPictrueRealSize(int i_size)
{
return Application.GetRealWidth(i_size);
}
///
/// 控件移除
///
public override void RemoveFromParent()
{
if (this.Parent != null)
{
base.RemoveFromParent();
}
}
///
/// ☆☆移除全部控件☆☆
///
public override void RemoveAll()
{
if (this.Parent != null)
{
base.RemoveAll();
}
}
#endregion
}
}