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
40
Is there a tool/utility that allows discovery of object/relationships of WPF controls
posted

Is there a tool/utility that allows discovery of object/relationships of WPF controls?

For example. If it weren't for the sample code which showed PercentValue in the XamPieChart.ToolTip I wouldn't have had a place to discover that it was a part of the PieSliceDataContext via Visual Studio's right click - Go To Definition.

            <ig:XamPieChart.ToolTip>
                <StackPanel Orientation="Horizontal">
                    <TextBlock Text="{Binding ItemLabel}" />
                    <TextBlock Text=" ("/>
                    <TextBlock Text="{Binding PercentValue, Converter={StaticResource percentConverter}}" />
                    <TextBlock Text=")"/>
                </StackPanel>
            </ig:XamPieChart.ToolTip>

The documentation isn't helping me.  Or at least I'm not holding it right if it could.  There has to be a way to point to the XamPieChart and drill down through it to discover the pieces and parts.  Anyone have a good way within Visual Studio (object browser isn't cutting it) or via an outside tool or utility to discover the pieces and parts of a Infragistics control?