Skip to content

Commit

Permalink
PUSH
Browse files Browse the repository at this point in the history
-> More working on the db side
  • Loading branch information
NaysKutzu committed Oct 6, 2023
1 parent 46d538d commit 6421a09
Show file tree
Hide file tree
Showing 6 changed files with 7,328 additions and 46 deletions.
260 changes: 260 additions & 0 deletions Forms/Controller/NewDatabase.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions Forms/Controller/NewDatabase.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
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 Pterodactyl.Forms.Controller
{
public partial class NewDatabase : Form
{
public NewDatabase()
{
InitializeComponent();
}

private void lblclose_Click(object sender, EventArgs e)
{
this.Close();
}

private void btncancel_Click(object sender, EventArgs e)
{
this.Close();
}

private void btnadddb_Click(object sender, EventArgs e)
{
if (txtpanelname.Text == "" && txtconfrom.Text == "")
{

}
}
}
}
Loading

0 comments on commit 6421a09

Please sign in to comment.