コード例 #1
0
        /// <summary>
        /// 构造函数
        /// </summary>
        public LocalizationConfiguration()
        {
            Languages = new List<LanguageInfo>();
            Sources = new LocalizationSourceList();

            IsEnabled = true;
            ReturnGivenTextIfNotFound = true;
            WrapGivenTextIfNotFound = true;
        }
コード例 #2
0
        public LocalizationConfiguration()
        {
            Sources = new LocalizationSourceList();

            IsEnabled = true;
            ReturnGivenTextIfNotFound = true;
            WrapGivenTextIfNotFound   = true;
            HumanizeTextIfNotFound    = true;
            LogWarnMessageIfNotFound  = true;
        }
コード例 #3
0
 public ItemLocalizationViewModel()
 {
     SelectedLocalizationSource = LocalizationSourceList.First();
     SetCollectionView(null);
     LoadItemsAsync();
 }
コード例 #4
0
 public LocalizationConfiguration()
 {
     Languages = new List<LanguageInfo>();
     Sources = new LocalizationSourceList();
     IsEnabled = true;
 }