Exemplo n.º 1
0
            public override string GetDisplayValue(ListedSettingOption <TType, TTarget> option)
            {
                int count = 0;

                if (mList != null)
                {
                    count = mList.Count;
                }

                return(EAText.GetNumberString(count));
            }
Exemplo n.º 2
0
 public Item(ListedSettingOption <TType, TTarget> parent, TType value)
     : base(value, parent.GetLocalizedValue(value), parent.GetList().Contains(value) ? 1 : 0)
 {
 }
Exemplo n.º 3
0
 public override string GetExportValue(ListedSettingOption <TType, TTarget> option)
 {
     return(ListToString <TType> .StaticConvert(mList.Keys, option.ConvertToString));
 }
Exemplo n.º 4
0
 public abstract string GetExportValue(ListedSettingOption <TType, TTarget> option);
Exemplo n.º 5
0
 public abstract string GetDisplayValue(ListedSettingOption <TType, TTarget> option);