You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
603 B
23 lines
603 B
2 years ago
|
using System;
|
||
|
using System.Globalization;
|
||
|
using System.Windows.Data;
|
||
|
|
||
|
namespace BBWYB.Client.Converters
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Command多参数传递类
|
||
|
/// </summary>
|
||
|
public class MultiParameterTransferConverter : IMultiValueConverter
|
||
|
{
|
||
|
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
|
||
|
{
|
||
|
return values.Clone();
|
||
|
}
|
||
|
|
||
|
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
|
||
|
{
|
||
|
throw new NotImplementedException();
|
||
|
}
|
||
|
}
|
||
|
}
|