File: OpenURLForm.cs

package info (click to toggle)
xsddiagram 1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,188 kB
  • sloc: cs: 9,274; sh: 42; makefile: 26; xml: 3
file content (33 lines) | stat: -rw-r--r-- 730 bytes parent folder | download | duplicates (3)
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);
        }
    }
}