using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Markup; namespace Future.Contract { /// /// 实现Int向GridLength的转化 /// public class LengthConverter : MarkupExtension { public override object ProvideValue(IServiceProvider serviceProvider) { return 0; } } }