更新
This commit is contained in:
@@ -247,11 +247,11 @@ namespace WPFluent.Controls
|
||||
Content = SelectedStrList.Count > MaxShowNumber
|
||||
? $"选中{SelectedStrList.Count}个"
|
||||
: SelectedStrList.Aggregate(string.Empty, (current, p) => $"{current}{p}, ")
|
||||
.TrimEnd(new char[] { ' ' })
|
||||
.TrimEnd(new char[] { ',' });
|
||||
.TrimEnd([' '])
|
||||
.TrimEnd([',']);
|
||||
|
||||
Value = SelectedStrList.Aggregate(string.Empty, (current, p) => $"{current}{p},")
|
||||
.TrimEnd(new char[] { ',' });
|
||||
.TrimEnd([',']);
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user