Files
PizzaExpress-WinClient/UrlForm.cs

28 lines
516 B
C#

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)
{
}
}
}