WPF自定义控件高于所有控件

时间:2019-03-04 08:42:24

标签: wpf custom-controls

我正在尝试将叠加层添加到微调器中, 当前的方法,

 <CustomProgressBar Style="{DynamicResource shuiProgressBar_SpinnerStyle}" Margin="10"  Info="Loading in progress" Overlay="True">
                <CustomProgressBar.OverlayContent>
                    <StackPanel>
                        <TextBox Text="John Doe" />
                        <TextBox Text="John Megrathe" />
                        <TextBox Text="John Huffman" />
                    </StackPanel>
                </CustomProgressBar.OverlayContent>
            </CustomProgressBar>

上面的代码定义了所有控件都需要覆盖的内容,并将其放置在“ OverlayContent”中。 这种方法看起来像是进度条子内部的主要内容。 尝试使用弹出窗口,但弹出窗口仅覆盖屏幕的75%。 任何人都可以建议我,任何实现覆盖的方法,都必须为其自定义wpf控件

0 个答案:

没有答案