Inheritance: System.Windows.Forms.Form
Esempio n. 1
0
        private void OnOpen(object sender, EventArgs e)
        {
            if (this.openResourceDialog.ShowDialog(this) != DialogResult.OK)
            {
                return;
            }

            foreach (var path in this.openResourceDialog.FileNames)
            {
                var editor = new ResourceViewer(this);
                editor.LoadResource(path);
                editor.Show();
            }
        }
Esempio n. 2
0
        private void OnOpen(object sender, EventArgs e)
        {
            if (this.openResourceDialog.ShowDialog(this) != DialogResult.OK)
            {
                return;
            }

            foreach (var path in this.openResourceDialog.FileNames)
            {
                var editor = new ResourceViewer(this);
                editor.LoadResource(path);
                editor.Show();
            }
        }