3月8日,ScrollPanel,每日20行。

    xiaoxiao2021-03-25  155

    import java.awt.*; import java.awt.event.*; public class scrollpanel { public static void main(String[] args){ Frame f = new Frame("ScrollPanel"); TextArea t = new TextArea("",10,50,TextArea.SCROLLBARS_NONE); ScrollPane sp = new ScrollPane(); sp.add(t); f.add(sp); f.pack(); f.setVisible(true); } }

    转载请注明原文地址: https://ju.6miu.com/read-6932.html

    最新回复(0)