简体   繁体   中英

Silverlight: Creating a DataTemplate in XAML, and assigning it in code?

Is it possible to create a DataTemplate in XAML, and apply it to various controls via code?

If so, how do I reference a DataTemplate that I've built in XAML?

if you have

   <UserControl.Resources>
       <DataTemplate x:Name="myTemplate" />
   </UserControl.Resources>

defined as a resource, you can reference it like this

var myTemplate  = (DataTemplate) Resources["myTemplate"];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM