mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
using System.Globalization;
|
|
|
|
namespace HKW.WPF.Converters;
|
|
|
|
/// <summary>
|
|
/// 字符串格式化器
|
|
/// <para>示例:
|
|
/// <code><![CDATA[
|
|
/// <MultiBinding Converter="{StaticResource MarginConverter}">
|
|
/// <Binding Path="StringFormat" />
|
|
/// <Binding Path="Value1" />
|
|
/// <Binding Path="Value2" />
|
|
/// </MultiBinding>
|
|
/// OR
|
|
/// <MultiBinding Converter="{StaticResource MarginConverter}" ConverterParameter="{}{0}{1}">
|
|
/// <Binding Path="Value1" />
|
|
/// <Binding Path="Value2" />
|
|
/// </MultiBinding>
|
|
/// ]]></code></para>
|
|
/// </summary>
|
|
public class StringFormatConverter : MultiValueConverterBase
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="values"></param>
|
|
/// <param name="targetType"></param>
|
|
/// <param name="parameter"></param>
|
|
/// <param name="culture"></param>
|
|
/// <returns></returns>
|
|
public override object Convert(
|
|
object[] values,
|
|
Type targetType,
|
|
object parameter,
|
|
CultureInfo culture
|
|
)
|
|
{
|
|
var formatStr = (string)parameter;
|
|
if (string.IsNullOrWhiteSpace(formatStr))
|
|
{
|
|
formatStr = (string)values[0];
|
|
return string.Format(formatStr, values.Skip(1).ToArray());
|
|
}
|
|
else
|
|
{
|
|
return string.Format(formatStr, values);
|
|
}
|
|
}
|
|
}
|