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
65
make OverviewPlusDetailPane fully opaque in WPF
posted

make OverviewPlusDetailPane fully opaque in WPF

I am trying to make the overview window of an OrgChart fully opaque and am applying the following style

                <Style x:Key="overviewPanelStyle" TargetType="ig:XamOverviewPlusDetailPane">
                    <Setter Property="Opacity" Value="1"/>
                    <Setter Property="Background" Value="#FFFF0000"/>
                </Style>

While this makes the overview background red, it is still slightly transparent, which makes the overview hard to read if there is data behind it.

What style do I need to set to accomplish full opacity?

Parents Reply Children
No Data