1
特定のフォントでテキストフィールド派生クラスを作成しようとしています。フィールドは正しく作成されますが、フォントは機能しません。テキストフィールドの派生クラスフォントがラケットで機能しない
#lang racket/gui
; my particular font:
(define (myfont size) (make-object font% size 'modern 'normal 'bold))
(define myframe (new frame% [width 600] [label "MyFrame"]))
(new text-field% [parent myframe] [label "Usual text-field; font works here:"] [font (myfont 14)])
; Following is my text-field derived class with a particular font:
(define mytf% (class text-field% (field (font (myfont 14))) (super-new)))
(new mytf% [parent myframe] [label "My text-field derived class; font does not work here:"])
(send myframe show #t)
問題はどこで解決できますか?あなたのコメント/回答ありがとう。
はい、それは動作します。ありがとう。 – rnso