Form1.Visible= false C#

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

Why is there no Visible method for Form1 on a new windows app ?


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication3
{
public partial class Form1 : Form
{
public Form1()
{

InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{

}
}
}
 
Back
Top