如何在 Pharo 中更改文本字段的字体



在Pharo中,我在更改特定字段的字体时遇到问题。我正在使用UITheme作为我的openModal file。下面是对我的代码的引用:

openModal
|builder dialog content login|
builder := UITheme builder.
content := (builder newLabelGroup: {
        'Login' -> (login := (builder
                                        newTextEntryFor: contact 
                                        getText: #login
                                        setText: #login:
                                        help: 'Enter the login of the user')
                                    acceptOnCR: false;
                                    minWidth: 200).
        'Full name' -> ((builder
                        newTextEntryFor: contact 
                        getText: #fullName 
                        setText: #fullName: 
                        help: 'Enter the full name of the user.')
                    acceptOnCR: false;
                    minWidth: 200).
        'Password' -> ((builder
                        newTextEntryFor: contact 
                        getText: #password 
                        setText: #password: 
                        help: 'Enter the password of the user.')
                    acceptOnCR: false;
                    minWidth: 200)
}).
dialog := builder newPluggableDialogWindow:'Edit contact' for: content.
dialog rememberKeyboardFocus: login.
builder openModal: dialog.

我已经查找了像 TextMorph 这样的包,在这里找到:http://files.pharo.org/doc/2.0/class/TextMorph.html#/method/font%253A,但我找不到一种方法来实现它来修改对话框一个字段的字体,特别是密码(将其更改为密码字体)。我将如何去做?

使用现有包的解决方案也受到欢迎。

您可以在构建器返回的小部件上设置字体,类似于调用接受 OnCr 或 minWidth。例如:

    login := (builder
    newTextEntryFor: 'contact'
    getText: #login
    setText: #login:
    help: 'Enter the login of the user')
    font: StandardFonts codeFont;
    acceptOnCR: false;
    minWidth: 200;
    font: StandardFont codeFont

或者对于密码输入字段,只需调用

beEncrypted

相关内容

  • 没有找到相关文章

最新更新