以编程方式对齐 UIPanel 中的轴手柄 - Matlab

Aligning Axes Handle Within UIPanel Programatically - Matlab

我在 uipanel 中对齐 axes_h 句柄时遇到问题。我希望能够为我的情节指定一个特定的大小,然后将其置于面板中间,然后希望随后将我的 uipanel 与我的图形对齐。我查看了文档,该示例仅在 figure.

中对齐和分布 uicontrol 按钮

这是我的代码:

%% create figure
fig_h = figure;
set(fig_h, 'Position', [100, 100, 1049, 895]);

%% create empty scatter plot within a panel
e_panel_position = [0.1 0.4 0.4 0.5];
e_panel_h = uipanel('Parent', fig_h, 'Title','Emotion','FontSize',12,'BackgroundColor','white','Position',e_panel_position);

axes_position = [0 0 0.7 0.8];
axes_h = axes('Parent', e_panel_h, 'Position', axes_position);
scatter_h = scatter(axes_h, [],[], 'MarkerEdgeColor',[0 .5 .5], 'MarkerFaceColor',[0 .7 .7],'LineWidth',1.5);
axis(axes_h, [-4 4 -4 4]);
align(axes_h, 'HorizontalAlignment', 'Center', 'VerticalAlignment', 'Middle');

编辑:

我正在努力使用 align 函数让两个静态文本框和一个滑块对齐成一条直线。我希望第一个文本框位于滑块前面,第二个文本框位于滑块的另一侧,如下所示:

然后我希望能够从对齐对象中获取句柄并执行 'Will' 下面建议的居中方法,将所有三个项目作为一个集体居中。该图像说明了这一点,但这样做非常繁琐,因为我是手动完成的。但是,我需要对更多 uipanel 框中的更多滑块执行此操作,因此我认为这是一种更快的方法。

这是我的代码:

%% create environment slider and text with panel
env_panel_position = [0.1 0.33 0.4 0.1];
env_panel_h = uipanel('Parent', fig_h, 'Title','Environment','FontSize',12,'BackgroundColor','white','Position',env_panel_position);

dark_text_position = [0 0 0.1 0.3];
dry_text_h = uicontrol('Parent', env_panel_h, 'Style', 'text', 'units', 'normalized', 'position', dark_text_position, 'String', 'dark');

dark_light_slider_position = [0 0 0.7 0.1];
dark_light_slider_h = uicontrol('Parent', env_panel_h, 'Style', 'slider', 'units', 'normalized', 'position', dark_light_slider_position);

wet_text_position = [0 0 0.1 0.3];
wet_text_h = uicontrol('Parent', env_panel_h, 'Style', 'text', 'units', 'normalized', 'position', wet_text_position, 'String', 'Light');

align_h = align([dry_text_h dark_light_slider_h wet_text_h], 'Distribute', 'Middle');

align函数定位多个对象所以它们在一行。要使图形对象在其容器中居中,您只需以 normalized 为单位为其指定正确位置,这是您正在创建的对象的默认值。

您的定义 axes_position = [0 0 0.7 0.8]; 意味着 axes_h 的宽度是 uipanel 的 70%,是其高度的 80%。要使其居中,您只需将左下坐标设置为横跨容器的 15% 和向上容器的 10%:

axes_position = [0.15 0.1 0.7 0.8];

uipanel 的定位同样适用:

e_panel_position = [0.3 0.25 0.4 0.5];