Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Avalon

Vista - Binding properties of two elements on a canvas

 
 
Old 06-14-2006   #1 (permalink)
Illumineo


 
 

Binding properties of two elements on a canvas

A canvas has two rectangles, one of which can be moved by means of a
slider. Is it possible to let the second follow the first by binding to
the 'Canvas.Left' of the rectangle?

The line
<Binding ElementName="rec" Path="Canvas.Left">
seems to be accepted in XAMLPad but does not produce the expected
result.




<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
>


<Canvas>
<StackPanel Orientation="Vertical" >

<StackPanel Orientation="Horizontal" >
<Slider Margin="5,5,5,5" Name="slider2"
DockPanel.Dock="Top" Maximum="1000"
Minimum="10" />
<Label Content="{Binding ElementName=slider2,
Path=Value}"></Label>
</StackPanel>
</StackPanel>
<Rectangle
Width="50"
Height="50"
Fill="yellow"
Canvas.Left="{Binding ElementName=slider2, Path=Value}"
Canvas.Bottom="325"
Name="rec"
/>

<Rectangle
Width="50"
Height="50"
Fill="Red"
Canvas.Top="120"
>

<Canvas.Left>
<Binding ElementName="rec" Path="Canvas.Left"> <!--- this is allowed
but does not work... */ -->

</Binding>
</Canvas.Left>
</Rectangle>
</Canvas>
</Page>


[Thanks]


My System SpecsSystem Spec
Old 06-14-2006   #2 (permalink)
viliescu


 
 

RE: Binding properties of two elements on a canvas

Instead of Path="Canvas.Left" use Path="(Canvas.Left)"
--
Valentin Iliescu [MVP - Client Application Development]


"Illumineo" wrote:

> A canvas has two rectangles, one of which can be moved by means of a
> slider. Is it possible to let the second follow the first by binding to
> the 'Canvas.Left' of the rectangle?
>
> The line
> <Binding ElementName="rec" Path="Canvas.Left">
> seems to be accepted in XAMLPad but does not produce the expected
> result.
>
>
>
>
> <Page
> xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
> xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
> >

>
> <Canvas>
> <StackPanel Orientation="Vertical" >
>
> <StackPanel Orientation="Horizontal" >
> <Slider Margin="5,5,5,5" Name="slider2"
> DockPanel.Dock="Top" Maximum="1000"
> Minimum="10" />
> <Label Content="{Binding ElementName=slider2,
> Path=Value}"></Label>
> </StackPanel>
> </StackPanel>
> <Rectangle
> Width="50"
> Height="50"
> Fill="yellow"
> Canvas.Left="{Binding ElementName=slider2, Path=Value}"
> Canvas.Bottom="325"
> Name="rec"
> />
>
> <Rectangle
> Width="50"
> Height="50"
> Fill="Red"
> Canvas.Top="120"
> >

> <Canvas.Left>
> <Binding ElementName="rec" Path="Canvas.Left"> <!--- this is allowed
> but does not work... */ -->
>
> </Binding>
> </Canvas.Left>
> </Rectangle>
> </Canvas>
> </Page>
>
>
> [Thanks]
>
>

My System SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
group elements in canvas .NET General
Can't delete elements in folder Recent elements Vista General
Support for Adobe photoshop elements 5 or premier elements 3 on Vista 64 bits Vista General


Vista Forums 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 Ltd

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