本文介绍了如何对齐文本在Matlab GUI按钮的顶部?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个大按钮的GUI和wouls喜欢在按钮上的文本对齐顶端,所有我发现的是水平对齐属性。
谢谢...

I have a GUI with big buttons and wouls like to align the text in the button to the top, all I found is "horizontal alignment" property.Thanks...

推荐答案

您需要访问底层Java Swing组件(我用FINDJOBJ功能):

You need to access the underlying Java Swing component (I am using FINDJOBJ function):

figure('Menubar','none', 'Position',[200 200 300 200])
h = uicontrol('Style','pushbutton', 'String','click', ...
   'Units','normalized', 'Position',[0.3 0.3 0.5 0.5]);
jh = findjobj(h);
jh.setVerticalAlignment( javax.swing.AbstractButton.BOTTOM );

这篇关于如何对齐文本在Matlab GUI按钮的顶部?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 22:57