Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
4040
TextBlock (UnboundColumn) binding toTextColumn
posted

Hi,

I have a XamGrid with 3 columns.

Last column is an unbound column.

I would like to bind TextBlock in this column to same value as one of the TextColumn.

This is the code :

-----------------------------------------------------

<ig:XamGrid x:Name="MyElements"
            ItemsSource="{Binding Elements}"
            ActiveItem="{Binding OneElement, Mode=TwoWay}"    >

    <ig:XamGrid.Columns>

        <ig:TextColumn Key="UserName" HeaderText="User name" ></ig:TextColumn>

        <ig:TextColumn Key="Points" HeaderText="Points" ></ig:TextColumn>

        <ig:UnboundColumn Key="calculated" HeaderText="With coeff." >
            <ig:UnboundColumn.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding [HERE I WANT TO BIND TO Points], RelativeSource={RelativeSource AncestorType=ig:XamGrid}}"></TextBlock>
                </DataTemplate>
            </ig:UnboundColumn.ItemTemplate>
        </ig:UnboundColumn>

    </ig:XamGrid.Columns>
</ig:XamGrid>  

------------------------------

First of all, I want to display the same data in 2nd and 3rd data.

Because after that I will use a converter to transform text in 3rd column.
(remark : convertion will use some data not present in "OneElement")

Do you know if this is possible to bind the TextBlock content to the TextColumn value ?

Thanks.

Alain.