Relative Content

Tag Archive for c#winforms

Color.FromArgb(Int32, Color) is not working

Label label = new Label(); label.Text = “123”; label.Location = new Point(100, 100); label.ForeColor = Color.FromArgb(50, Color.Blue); this.Controls.Add(label); Alpha channel doesn’t work. If I put 255 instead of 50, it will be the same. How can I make a transparent label then? I need something like this Alpha in ForeColor . Only I need the […]