How to remove backcolor from a label in C#

1 Answer

0 votes
namespace WinFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            label1.BackColor = Color.Transparent;
        }
    }
}




/*
 * run:
 *
 * 
 * 
 */

 



answered Aug 21, 2023 by avibootz

Related questions

1 answer 142 views
1 answer 124 views
1 answer 143 views
1 answer 171 views
1 answer 161 views
1 answer 156 views
1 answer 157 views
157 views asked Aug 26, 2023 by avibootz
...