Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 MigLayout 容器中使用“相关”和“不相关”间隙值是一个不错的功能,但我想更改它们的默认值。怎么做?我不喜欢使用明确的数字,例如“wrap 15px”。“换行相关”更加灵活和可读。
看看类 PlatformDefaults:它有 api 来自定义(几乎)所有语义上已知的 unitValues,fi 来设置 x/y 的不相关间隙
UnitValue myGap = new UnitValue(15, UnitValue.LPX, null); PlatformDefaults.setUnrelatedGap(myGap, myGap);
但请注意:默认值是每个操作系统指南要求的值,如果您更改它们,您的用户界面将违反这些指南!