3

NSComboBox縦に整列されていないテキストを表示する があります。内のテキストを垂直方向に揃える方法はありNSComboBoxますか?

ここに画像の説明を入力

ご覧のとおり、非常に奇妙で、フォントサイズごとに変化しません。NSComboBoxClass Referenceを検索しましたが、利用可能な唯一のリソースは、ポップアップ表示される項目 (intercellSpacingまたは などsetItemHeight:) です。

前もって感謝します。

4

1 に答える 1

1

試す:

NSComboBox* cbx = ZGKeyComboBox.new;
// NSViewMaxYMargin means: The top margin between the receiver and its superview is flexible.
cbx.autoresizingMask = NSViewMaxYMargin;
cbx.itemHeight = cbx.itemHeight + 3; // addSubview will center vertically
NSRect r = NSMakeRect(x, y, width, cbx.itemHeight + 5);
cbx.frame = r;
...
[parent addSubview: cbx];
于 2015-07-02T11:09:38.043 に答える