|
|
|
|
using Admin.Core.Model;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Wpf.ConvertTo
|
|
|
|
|
{
|
|
|
|
|
public class MultiFaultAppConverter : IMultiValueConverter
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对象转换
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="values">所绑定的源的值</param>
|
|
|
|
|
/// <param name="targetType">目标的类型</param>
|
|
|
|
|
/// <param name="parameter">绑定时所传递的参数</param>
|
|
|
|
|
/// <param name="culture"><系统语言等信息</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
|
|
|
{
|
|
|
|
|
//if (values != null && values.Count() ==8)
|
|
|
|
|
//{
|
|
|
|
|
// //EEquipmentMaintenance bsm = new EEquipmentMaintenance() {
|
|
|
|
|
// // Name = values[0].ToString(),
|
|
|
|
|
// // No = values[1].ToString(),
|
|
|
|
|
// // EquipmentType = values[2].ToString(),
|
|
|
|
|
// // Address = values[3].ToString(),
|
|
|
|
|
// // TimeOfOccurrence = values[4].ToString(),
|
|
|
|
|
// // RepairApplicant = values[5].ToString(),
|
|
|
|
|
// // Phone = values[6].ToString(),
|
|
|
|
|
// // Description = values[7].ToString(),
|
|
|
|
|
|
|
|
|
|
// //};
|
|
|
|
|
// return bsm;
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|