4

我需要做一个特殊的文本修剪。可以说我的字符串是:abcd

默认修剪会给我这个:ab...

但我需要它。a..d

知道如何实施吗?

目前我正在使用

<TextBlock Text="abcdLongWord" TextTrimming="CharacterEllipsis"/>
4

2 回答 2

1

我过去也有过这种担忧,并编写了自己的转换器来处理 Kearning 的过程。

转换器类

internal class KearningConverter : IValueConverter {

    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
        string result = value.ToString();

        try {
            int length = int.Parse(parameter.ToString());

            if (result.Length > length) {
                result = result.Substring(0, length) + "...";
            }
        } catch {
            result += "...";
        }
        return result;
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
        throw new NotImplementedException();
    }
}

Xaml 标记

xmlns:conv="clr-namespace:project.converters;assembly=project"

<Window.Resources>
<conv:KearningConverter x:Key="kearnConverter"/>
</Window.Resources>

<TextBlock Text="{Binding Path=AttributeName, Converter={StaticResource kearnConverter}, ConverterParameter=3}"/>

通过这种方式,您可以根据 UI 布局的不同要求来实现多种学习。

于 2013-04-09T12:42:24.590 回答
-3

未对此进行测试,但取决于您实际需要的内容:

string test = "abcdefghij";
  int nCharNum = test.Length();
  test.Remove(2, nCharNum - 1); // this will get you "aj"
  //or
  test.Remove(2, 3); // this will result in "adefg..."
  //or
  test.Remove(2, nCharNum - 1);
  test.Insert(2, "..") // this will get you "a..j"

希望这可以帮助。(索引可能需要一些修正)

于 2013-04-09T11:25:07.627 回答