做了个计算器

This commit is contained in:
2024-06-22 01:42:41 +08:00
parent 3a1a7a2005
commit 44fe8b49ed
8 changed files with 161 additions and 3 deletions
@@ -0,0 +1,10 @@
package loginWindow;
import java.awt.*;
public class SidePanel extends Panel {
public SidePanel(int width, int height) {
setBackground(new Color(0X39, 0XC5, 0XBB));
setSize(width, height);
}
}