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
600
can DragChannels be binding?
posted

Hi,

I tried to binding DragChannels and didn't work, application and vs froze.

        <DataTemplate x:Key="DatoItemTemplate">
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="Auto" />
                    <ColumnDefinition Width="*" />
                </Grid.ColumnDefinitions>
                <CheckBox Margin="3" IsChecked="{Binding Seleccionado, Mode=TwoWay}" />
                <Grid Grid.Column="1" >
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="*" />
                    </Grid.ColumnDefinitions>
                    <ig:DragDropManager.DragSource>
                        <ig:DragSource IsDraggable="True" DragChannels="{Binding Path=Canal}"  />
                    </ig:DragDropManager.DragSource>
                    <Image Margin="3" Width="15" Height="15" Source="{Binding Imagen, Mode=OneWay}" />
                    <TextBlock Margin="3" Grid.Column="1" Text="{Binding Nombre, Mode=OneWay}" />
                </Grid>
            </Grid>
        </DataTemplate>

is this an error? or really cannot be.

SL4 and IG 10.2.20102.1029.

Thanks

 

 

Parents Reply Children
No Data