예제 #1
0
            public override string GetDisplayValue(ListedSettingOption <TType, TTarget> option)
            {
                int count = 0;

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

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