i want to see numbers, not window behind the calculator

This commit is contained in:
2026-01-11 03:05:50 +05:00
parent 8f065abb81
commit 3d01386439

View File

@@ -16,7 +16,7 @@
{ {
InitializeComponent(); InitializeComponent();
BackColor = LunarGray; BackColor = LunarGray;
Opacity = 0.75; Opacity = 0.9;
FormBorderStyle = FormBorderStyle.None; FormBorderStyle = FormBorderStyle.None;
ClientSize = new Size(300, 500); ClientSize = new Size(300, 500);
Text = "Calculator"; Text = "Calculator";
@@ -144,7 +144,6 @@
CalculatorPanel.FormBorderStyle = FormBorderStyle.None; CalculatorPanel.FormBorderStyle = FormBorderStyle.None;
CalculatorPanel.BackColor = Color.Gray; CalculatorPanel.BackColor = Color.Gray;
CalculatorPanel.TransparencyKey = CalculatorPanel.BackColor; CalculatorPanel.TransparencyKey = CalculatorPanel.BackColor;
CalculatorPanel.Opacity = 0.90;
CalculatorPanel.StartPosition = FormStartPosition.Manual; CalculatorPanel.StartPosition = FormStartPosition.Manual;
CalculatorPanel.DesktopLocation = new Point(Location.X, Location.Y + 30); CalculatorPanel.DesktopLocation = new Point(Location.X, Location.Y + 30);
CalculatorPanel.ClientSize = new Size(Size.Width, Size.Height - 30); CalculatorPanel.ClientSize = new Size(Size.Width, Size.Height - 30);