Aggiunta form toolbox Server URL

This commit is contained in:
2026-01-29 09:27:04 +01:00
parent 42878bfeaf
commit d6c81f8d17
4 changed files with 213 additions and 0 deletions

27
UrlForm.cs Normal file
View File

@@ -0,0 +1,27 @@
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 PizzaExpress_Client
{
public partial class UrlForm : Form
{
public UrlForm(string srvUrl)
{
InitializeComponent();
urlTxt.Text = srvUrl;
}
private void UrlForm_Load(object sender, EventArgs e)
{
}
}
}