e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
32 lines
1007 B
C#
32 lines
1007 B
C#
// <copyright>
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace System.Activities.XamlIntegration
|
|
{
|
|
using System;
|
|
using System.Activities.DynamicUpdate;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
using System.Windows.Markup;
|
|
|
|
public class DynamicUpdateMapConverter : TypeConverter
|
|
{
|
|
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
|
|
{
|
|
return destinationType == typeof(MarkupExtension);
|
|
}
|
|
|
|
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
|
|
{
|
|
DynamicUpdateMap map = value as DynamicUpdateMap;
|
|
if (destinationType == typeof(MarkupExtension) && map != null)
|
|
{
|
|
return new DynamicUpdateMapExtension(map);
|
|
}
|
|
|
|
return base.ConvertTo(context, culture, value, destinationType);
|
|
}
|
|
}
|
|
}
|