using System;
using System.Collections.Generic;
using System.Text;
namespace bPod
{
public class PodCastFunctions : Form1
{
public void ClearOriginal()
{
newpodcastButton.Visible = false;
addpodcastButton.Visible = false;
finalisepodcastButton.Visible = false;
overviewButton.Visible = false;
this.Height = 183;
this.Width = 671;
this.BackgroundImage = Properties.Resources.NewPCast;
podcastdescLabel.Visible = true;
podcastdescTextBox.Visible = true;
podcastnameLabel.Visible = true;
podcastnameTextBox.Visible = true;
podcastdetailsButton.Visible = true;
}
public void DrawOriginal()
{
podcastdescLabel.Visible = false;
podcastdescTextBox.Visible = false;
podcastnameLabel.Visible = false;
podcastnameTextBox.Visible = false;
podcastdetailsButton.Visible = false;
newpodcastButton.Visible = true;
addpodcastButton.Visible = true;
finalisepodcastButton.Visible = true;
overviewButton.Visible = true;
this.Height = 624;
this.Width = 670;
this.BackgroundImage = Properties.Resources.Background;
}
}
}
why does this not work?