키를 기반으로 문자열을 번역 할 때 마크 업 확장을 만들었습니다. 예 <TextBlock Text="{Translate myKey}" />
이제 내 키를 제공하기 위해 중첩 된 바인딩을 사용할 수 있기를 원합니다. 예 : 나는이 작업을 수행 할 때 <TextBlock Text="{Translate {Binding KeyFromDataContext}}"
을 MarkupExtension 파생 클래스 내에 포함 할 수 있습니까? public class GeometryQueryExtension : MarkupExtension
{
public XmlDataProvider Source { get; set; }
public string XPath { get; set; }
public