Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > Avalon

Cannot retrieve the visualtree from a datatemplate

Closed Thread
 
Thread Tools Display Modes
Old 02-01-2007   #1 (permalink)
Pon
Guest


 

Cannot retrieve the visualtree from a datatemplate

Hi evrybody,

I'm trying to set a databinding on a gridview column which have a
celltemplate.
This celltemplate is retrieved from a ressource defined in the form XAML
code.
To do that i tried the following in the form codebehind :
DataTemplate MyDataTemplate= this.FindResource("MyDataTemplateKey")

There, everythings seems normal as MyDataTemplate is not null.

But when i cannot walk the MyDataTemplate visualtree cause
MyDataTemplate.Visualtree is null.

Here is the code of the datatemplate :

<DataTemplate x:Key="MyDataTemplateKey">
<StackPanel Orientation="Horizontal" Margin="2">
<TextBlock x:Name="Txtbk_Cpte">xxxxx</TextBlock>
<Button Margin="2,0,0,0">
<Image Source="C:\xxxx\xxxx.ico" Height="14"/>
</Button>
</StackPanel>
</DataTemplate>

What do I do wrong ?

Thanx in advance.



Old 02-01-2007   #2 (permalink)
Pon
Guest


 

Re: Cannot retrieve the visualtree from a datatemplate

Got it. I used loadcontent.


"Pon" <pongla.public@laposte.net> wrote in message
news:%23fDznmgRHHA.388@TK2MSFTNGP04.phx.gbl...
> Hi evrybody,
>
> I'm trying to set a databinding on a gridview column which have a
> celltemplate.
> This celltemplate is retrieved from a ressource defined in the form XAML
> code.
> To do that i tried the following in the form codebehind :
> DataTemplate MyDataTemplate= this.FindResource("MyDataTemplateKey")
>
> There, everythings seems normal as MyDataTemplate is not null.
>
> But when i cannot walk the MyDataTemplate visualtree cause
> MyDataTemplate.Visualtree is null.
>
> Here is the code of the datatemplate :
>
> <DataTemplate x:Key="MyDataTemplateKey">
> <StackPanel Orientation="Horizontal" Margin="2">
> <TextBlock x:Name="Txtbk_Cpte">xxxxx</TextBlock>
> <Button Margin="2,0,0,0">
> <Image Source="C:\xxxx\xxxx.ico" Height="14"/>
> </Button>
> </StackPanel>
> </DataTemplate>
>
> What do I do wrong ?
>
> Thanx in advance.
>
>
>



Closed Thread

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
DataTemplate Billy Jacobs .NET General 0 05-12-2008 10:36 AM
How does a MarkupExtension get to the VisualTree? tbrummel Avalon 1 04-03-2008 04:25 AM
What is the difference between DataTemplate and ControlTemplate Daniel Avalon 4 05-19-2006 03:19 AM
Why can't I have a grid inside a datatemplate? Philippe Lavoie Avalon 1 03-22-2006 09:55 PM
Accessing Named controls within a datatemplate Midas Avalon 0 01-10-2006 03:53 PM








Vistax64.com is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media 2005-2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50