Arkadaşlar ben bir ortalama hesaplama programı yaptım... hesaplama yaptıktan sonra temizleme butonu lazım ... Combobox ve textbox kullandım hepsini temizleme kodunu yazar mısınız
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
foreach ( Control ctl in Parent.Controls) {
if (ctl.GetType()== TextBox)
ctl.text = "";
if (ctl.GetType()== ListBox)
ctl.Items.Clear();
}