6 Aralık 2020 Pazar

C# Metod İçerisinde Parametre Kullanımı

 using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;


namespace WindowsFormsApp43

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

        void Renk_Degistir(Control nesne)

        {

            if((nesne) is TextBox)

            {

                nesne.Text = "";

                nesne.BackColor = Color.SteelBlue;

                nesne.ForeColor = Color.Red;


            }

            else if((nesne) is Label)

            {

                nesne.BackColor = Color.DimGray;

                nesne.ForeColor = Color.White;

            }

        }

        private void button1_Click(object sender, EventArgs e)

        {

            Renk_Degistir(textBox1);

            Renk_Degistir(label1);

        }

    }

}



Hiç yorum yok:

Yorum Gönder