DataTemplate.LoadContent()를 사용하십시오. 예 :
DataTemplate dataTemplate = this.Resources["MyDataTemplate"] as DataTemplate;
FrameworkElement frameworkElement = dataTemplate.LoadContent() as FrameworkElement;
frameworkElement.DataContext = myPOCOInstance;
LayoutRoot.Children.Add(frameworkElement);
http://msdn.microsoft.com/en-us/library/system.windows.frameworktemplate.loadcontent.aspx
당신이 유형의 모든 인스턴스에 대해 정의 된 DataTemplate이있는 경우 (데이터 형식 = {X : 유형 ...}하지만 X : 키 =을 "...") 다음 정적 메서드를 사용하여 적절한 DataTemplate을 사용하여 내용을 만들 수 있습니다. 또한이 메서드는 DataTemplate이 없으면 TextBlock을 반환하여 ContentControl을 에뮬레이션합니다.
/// <summary>
/// Create content for an object based on a DataType scoped DataTemplate
/// </summary>
/// <param name="sourceObject">Object to create the content from</param>
/// <param name="resourceDictionary">ResourceDictionary to search for the DataTemplate</param>
/// <returns>Returns the root element of the content</returns>
public static FrameworkElement CreateFrameworkElementFromObject(object sourceObject, ResourceDictionary resourceDictionary)
{
// Find a DataTemplate defined for the DataType
DataTemplate dataTemplate = resourceDictionary[new DataTemplateKey(sourceObject.GetType())] as DataTemplate;
if (dataTemplate != null)
{
// Load the content for the DataTemplate
FrameworkElement frameworkElement = dataTemplate.LoadContent() as FrameworkElement;
// Set the DataContext of the loaded content to the supplied object
frameworkElement.DataContext = sourceObject;
// Return the content
return frameworkElement;
}
// Return a TextBlock if no DataTemplate is found for the source object data type
TextBlock textBlock = new TextBlock();
Binding binding = new Binding(String.Empty);
binding.Source = sourceObject;
textBlock.SetBinding(TextBlock.TextProperty, binding);
return textBlock;
}
콘텐츠 클래스와 정확히 똑같은 기능을 원합니다. 즉 콘텐츠 컨트롤 자체와 동일한 논리를 따릅니다. 당신은 코드가 좋고 DataTemplate 시나리오에서는 괜찮을 것이다. 하지만 내 POCO에 대해 정의 된 DataTemplate이 없을 수도 있습니다. –
일치하는 DataTemplate이 없으면 TextBlock을 만들고 POCO 객체에서 ToString()을 사용하여 텍스트를 정의합니다. –
간단히 말해 DataTemplate이 없으면 null을 반환하는 대신 TextBox를 만드는 메서드를 업데이트했습니다. FYI - ContentControl은 UIElement 내용을 UIElement로 표시하므로 이미 UIElement가 내용 인 경우이 메서드를 사용하지 마십시오. –