WPF binding false-positive errors

The new WPF bindings stuff in 6 is great, but unfortunately can't cope with bindings to array elements - I reported this ages ago:  http://youtrack.jetbrains.net/issue/RSRP-234449 but it doesn't seem to have got anywhere.    JB usually seem to treat false-positive errors as quite high-priority (they're certainly hugely annoying for your users), so I wondered if this has been overlooked.

It's a new bug in 6, because previous versions didn't analyse WPF bindings.

2 comments
Avatar
Andrey Serebryansky
Comment actions Permalink

Hello Will,

I've raised the priority of that issue and we'll take a look at it. Thank
you!

Andrey Serebryansky
Senior Support Engineer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"

The new WPF bindings stuff in 6 is great, but unfortunately can't cope
with bindings to array elements - I reported this ages ago:
http://youtrack.jetbrains.net/issue/RSRP-234449? but it doesn't seem
to have got anywhere.    JB usually seem to treat false-positive
errors as quite high-priority (they're certainly hugely annoying for
your users), so I wondered if this has been overlooked.

It's a new bug in 6, because previous versions didn't analyse WPF
bindings.

---
Original message URL:
http://devnet.jetbrains.net/message/5303047#5303047



0
Comment actions Permalink

Another false-positive errors in Binding.
When ItemsSource is used then datasource is not shifted on nested elements

        <Components:RadGridView Grid.Row="0"/>
 
            <Components:RadGridView x:Name="RadGridView1" ItemsSource="{Binding MenaList}"  Grid.Row="1">

            <Components:RadGridView.Columns>                 <telerik:GridViewDataColumn Header="Kód měny" DataMemberBinding="{Binding Kod}" />                 <telerik:GridViewDataColumn Header="Název měny" DataMemberBinding="{Binding Nazev}" />                 <telerik:GridViewDataColumn Header="Hlavní měna" DataMemberBinding="{Binding HlavniMena}" />                 <telerik:GridViewDataColumn Header="Zaokrouhlení" DataMemberBinding="{Binding Zaokrouhleni}" />                 <telerik:GridViewDataColumn Header="Aktivní" DataMemberBinding="{Binding Aktivni}" />             </Components:RadGridView.Columns>         </Components:RadGridView>


Red bindings is good and working!!

0

Please sign in to leave a comment.