Beispiel #1
0
        //============================================================
        // <T>转换内容为指定类型。</T>
        //
        // @param context 环境
        // @param culture 文化
        // @param value 内容
        // @param destinationType 目标类型
        // @return 是否含有位图
        //============================================================
        public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType)
        {
            FRcLine source = (FRcLine)value;

            if (null != source)
            {
                return(source.ToString());
            }
            return(null);
        }
Beispiel #2
0
 //============================================================
 // <T>加载主题样式属性。</T>
 //
 // @param property 主题样式属性
 //============================================================
 public bool EqualsStyleProperty(FTplThemeStyleProperty property)
 {
     if (property == null)
     {
         return(false);
     }
     if (_left.ToString() != property.GetString("left"))
     {
         return(false);
     }
     if (_top.ToString() != property.GetString("top"))
     {
         return(false);
     }
     if (_right.ToString() != property.GetString("right"))
     {
         return(false);
     }
     if (_bottom.ToString() != property.GetString("bottom"))
     {
         return(false);
     }
     return(true);
 }