深入C#(二)--Converter

Converter的使用

Converter<TInput, TOutput> Delegate

概述:Represents a method that converts an object from one type to another type.     
作用于泛型集合的类型转换,主要是用于ConverAll函数

Demo:
using System;
using System.Drawing;
using System.Collections.Generic;

public class Example
{
    public static void Main()
    {
        List<PointF> lpf = new List<PointF>();

        lpf.Add(new PointF(27.8F, 32.62F));
        lpf.Add(new PointF(99.3F, 147.273F));
        lpf.Add(new PointF(7.5F, 1412.2F));

        Console.WriteLine();
        foreach( PointF p in lpf )
        {
            Console.WriteLine(p);
        }

        List<Point> lp = lpf.ConvertAll( 
            new Converter<PointF, Point>(PointFToPoint));

        Console.WriteLine();
        foreach( Point p in lp )
        {
            Console.WriteLine(p);
        }
    }

    public static Point PointFToPoint(PointF pf)
    {
        return new Point(((int) pf.X), ((int) pf.Y));
    }
}

/* This code example produces the following output:

{X=27.8, Y=32.62}
{X=99.3, Y=147.273}
{X=7.5, Y=1412.2}

{X=27,Y=32}
{X=99,Y=147}
{X=7,Y=1412}
 */





IValueConverter Interface

概述:Exposes methods that allow modifying the data as it passes through the binding engine.
     在Windows Phone开发时候,有些数据需要绑定,但是绑定时候格式或者类型需要改变。
可以用一个Converter实现IValueConvert接口,然后实现Convert方法和ConvertBack方法(主要是Convert就行)


MSDN:
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章