1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace CommonFroms.G2D
- {
- public partial class G2DTextDialog : Form
- {
- public G2DTextDialog(string name)
- {
- InitializeComponent();
- this.textBox1.Text = name;
- this.textBox1.SelectAll();
- this.textBox1.Focus();
- }
- public string GetText()
- {
- return textBox1.Text;
- }
-
- //----------------------------------------------------------------------------------
- public static string Show(string name, string title)
- {
- G2DTextDialog dialog = new G2DTextDialog(name);
- dialog.Text = title;
- DialogResult res = dialog.ShowDialog();
- if (res == System.Windows.Forms.DialogResult.OK)
- {
- if (!string.IsNullOrEmpty(dialog.GetText()))
- {
- return dialog.GetText();
- }
- }
- return null;
- }
- public static string Show(string name)
- {
- return Show(name, name);
- }
- }
- }
|