Ejemplo n.º 1
0
 public Form1()
 {
     InitializeComponent();
     FBLoginGB.Hide();
     TraningExamplesPathTB.Text = Application.StartupPath + @"\TrainingExamples.csv";
     prediction = new Prediction();
 }
Ejemplo n.º 2
0
 private void LoginCB_CheckStateChanged(object sender, EventArgs e)
 {
     if (LoginCB.Checked == true)
     {
         this.Size = new Size(529, 508);
         FBLoginGB.Show();
     }
     else
     {
         this.Size = new Size(529, 295);
         FBLoginGB.Hide();
     }
 }