gpt4 book ai didi

wolfram-mathematica - 在 mathematica 的 Manipulate 对象中调整面板位置

转载 作者:行者123 更新时间:2023-12-04 08:05:36 27 4
gpt4 key购买 nike

建立在 Sjoerd solution to add alignment to a manipulate object 上:

考虑以下几点:

Manipulate[
Panel[Style[Row1, Bold, 20],
ImageSize -> 150, Alignment -> Center]
Panel[Style[Row2, Bold, 20],
ImageSize -> 150, Alignment -> Center],
{{Row1, {1}}, {1, 2, 3, 4, 5}, ControlType -> SetterBar,ControlPlacement -> Left},
{{Row2, {2}}, {1, 2, 3, 4, 5}, ControlType -> SetterBar,ControlPlacement -> Left}]

enter image description here

有没有办法让面板彼此重叠并与相应的 SetterBar 对齐?

最佳答案

这样的东西行得通吗?

Manipulate[
Grid[{{SetterBar[Dynamic[Row1], {1, 2, 3, 4, 5}],
Panel[Style[Row1, Bold, 20], ImageSize -> 150,
Alignment -> Center] }, {SetterBar[
Dynamic[Row2], {1, 2, 3, 4, 5}],
Panel[Style[Row2, Bold, 20], ImageSize -> 150,
Alignment -> Center]}}], {{Row1, {1}},
ControlType -> None}, {{Row2, {2}}, ControlType -> None}]

manipulate screenshot

从技术上讲,这会将控件移动到操作的主体中,并防止实际控件显示在它们通常会显示的位置。

关于wolfram-mathematica - 在 mathematica 的 Manipulate 对象中调整面板位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6471302/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com