1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
using System;
using System.Windows.Forms;
namespace XSDDiagram
{
public partial class OpenURLForm : Form
{
public OpenURLForm(string url)
{
InitializeComponent();
this.textBoxURL.Text = url;
}
public string URL { get; set; }
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
this.textBoxURL.Text = URL;
}
protected override void OnClosed(EventArgs e)
{
if (this.DialogResult == System.Windows.Forms.DialogResult.OK)
{
URL = this.textBoxURL.Text;
}
base.OnClosed(e);
}
}
}
|