WPF 中的扩展器

发布于 2024-08-14 18:25:15 字数 413 浏览 5 评论 0原文

我想创建一个扩展器来显示不同的配置..例如颜色设置,邮件设置。

假设有三个扩展器……垂直对齐。我希望当扩展器折叠或扩展时,它会移动下一个扩展器。当扩展器折叠时,下部扩展器将与最上面的扩展器对齐。

就像扩展器可以在折叠模式下如下所示对齐:
经验1
经验2
Exp3

,在 exapand 模式下,它将是

Exp1

内容

Exp2

exp2 的内容


Exp3

Exp3 的内容

请帮忙

I want to create an Expanders that will display different configurations.. like color settings , Mail settings.

Let's say there are three expanders ...allign vertically. I want when expander collapse or expand it will shift the next expander. When expander collapse the lower expander will allign next to the uppermost expander..

Like expander can be alligned like as below in collapse mode:
Exp1
Exp2
Exp3

and in exapand mode it will be

Exp1

Contents

Exp2

Contents of exp2


Exp3

Content of Exp3

Please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

堇年纸鸢 2024-08-21 18:25:15

这对你有用吗?

   <StackPanel>
    <Expander Header="Color">
     <TextBlock Height="30" Text="Color settings"/>
    </Expander>
    <Expander Header="Layout">
     <TextBlock Height="30" Text="Layout settings"/>
    </Expander>
    <Expander Header="Mail Settings">
     <TextBlock Height="30" Text="Layout settings"/>
    </Expander>
   </StackPanel>

Would this work for you?

   <StackPanel>
    <Expander Header="Color">
     <TextBlock Height="30" Text="Color settings"/>
    </Expander>
    <Expander Header="Layout">
     <TextBlock Height="30" Text="Layout settings"/>
    </Expander>
    <Expander Header="Mail Settings">
     <TextBlock Height="30" Text="Layout settings"/>
    </Expander>
   </StackPanel>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文