Click here to Skip to main content
15,887,416 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Printing with more than 96 dpi in WPF Pin
Super Lloyd14-Nov-12 16:16
Super Lloyd14-Nov-12 16:16 
GeneralRe: Printing with more than 96 dpi in WPF Pin
Member 452106819-Nov-12 22:26
Member 452106819-Nov-12 22:26 
QuestionI have issues with the C# WPF WebBrowser class Pin
Xarzu6-Nov-12 20:14
Xarzu6-Nov-12 20:14 
AnswerRe: I have issues with the C# WPF WebBrowser class Pin
Gerry Schmitz7-Nov-12 11:04
mveGerry Schmitz7-Nov-12 11:04 
QuestionBlurry Borderline In FlowDocument Pin
FocusedWolf6-Nov-12 10:46
FocusedWolf6-Nov-12 10:46 
AnswerRe: Blurry Borderline In FlowDocument Pin
Gerry Schmitz7-Nov-12 13:13
mveGerry Schmitz7-Nov-12 13:13 
AnswerRe: Blurry Borderline In FlowDocument Pin
FocusedWolf7-Nov-12 16:00
FocusedWolf7-Nov-12 16:00 
QuestionBinding in a WPF TreeViewItem Pin
#realJSOP6-Nov-12 8:16
mve#realJSOP6-Nov-12 8:16 
I want my treeview items to change their appearance based on other properties within the object being represented by the treeview item. I've done the following within the treeview zaml:

XML
<TreeView.Resources>
    <Style TargetType="{x:Type TreeViewItem}">
        <Setter Property="Foreground" Value="{Binding Path=IsValid, Converter={StaticResource StatusInvalidConverter}}" />
        <Setter Property="HeaderTemplate">
            <Setter.Value>
                <DataTemplate>
                    <Grid>
                        <Border Grid.Column="0" x:Name="PART_ItemBorder" ... >
                            <StackPanel Orientation="Horizontal">
                                <Label Content="{Binding}"  />

                                /// my custom stuff is here
                                <Label Content="(NOT USED)" 
                                       Visibility="{Binding Path=IsReferenced, Converter={StaticResource MyConverter}}" 
                                       Foreground="Red" />
                        
                            </StackPanel>
                        </Border>
                    </Grid>
                </DataTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</TreeView.Resources>


I'm getting the following notification in the output window when I run the app in debug mode:

System.Windows.Data Error: 40 : BindingExpression path error: 'IsReferenced' property not found on 'object' ''String' (HashCode=1540110492)'. BindingExpression:Path=IsReferenced; DataItem='String' (HashCode=1540110492); target element is 'Label' (Name=''); target property is 'Visibility' (type 'Visibility')<br />

".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass." - Dale Earnhardt, 1997


AnswerRe: Binding in a WPF TreeViewItem Pin
Pete O'Hanlon6-Nov-12 8:29
mvePete O'Hanlon6-Nov-12 8:29 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP6-Nov-12 8:54
mve#realJSOP6-Nov-12 8:54 
GeneralRe: Binding in a WPF TreeViewItem Pin
Pete O'Hanlon6-Nov-12 9:00
mvePete O'Hanlon6-Nov-12 9:00 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP6-Nov-12 9:22
mve#realJSOP6-Nov-12 9:22 
GeneralRe: Binding in a WPF TreeViewItem Pin
Pete O'Hanlon6-Nov-12 9:29
mvePete O'Hanlon6-Nov-12 9:29 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP6-Nov-12 9:37
mve#realJSOP6-Nov-12 9:37 
GeneralRe: Binding in a WPF TreeViewItem Pin
Pete O'Hanlon6-Nov-12 9:44
mvePete O'Hanlon6-Nov-12 9:44 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP6-Nov-12 10:02
mve#realJSOP6-Nov-12 10:02 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP6-Nov-12 10:13
mve#realJSOP6-Nov-12 10:13 
GeneralRe: Binding in a WPF TreeViewItem Pin
Pete O'Hanlon6-Nov-12 10:22
mvePete O'Hanlon6-Nov-12 10:22 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP6-Nov-12 10:27
mve#realJSOP6-Nov-12 10:27 
GeneralRe: Binding in a WPF TreeViewItem Pin
Pete O'Hanlon6-Nov-12 10:28
mvePete O'Hanlon6-Nov-12 10:28 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP7-Nov-12 3:53
mve#realJSOP7-Nov-12 3:53 
GeneralRe: Binding in a WPF TreeViewItem Pin
Pete O'Hanlon7-Nov-12 4:01
mvePete O'Hanlon7-Nov-12 4:01 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP7-Nov-12 5:24
mve#realJSOP7-Nov-12 5:24 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP8-Nov-12 4:30
mve#realJSOP8-Nov-12 4:30 
GeneralRe: Binding in a WPF TreeViewItem Pin
#realJSOP8-Nov-12 5:53
mve#realJSOP8-Nov-12 5:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.