lantool

ein feines Tool für LANs (damals)
git clone https://git.clttr.info/lantool.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

NewFolderDialog.cs (645B)


      1 using System.Windows.Forms;
      2 using System.IO;
      3 
      4 namespace LanTool
      5 {
      6     /// <summary>
      7     /// Dialog zum Anlegen eines neuen Ordners auf den eigenen Platten
      8     /// </summary>
      9     public partial class NewFolderDialog : Form
     10     {
     11         /// <summary>
     12         /// NewFolderDialog erstellen
     13         /// </summary>
     14         public NewFolderDialog ()
     15         {
     16             InitializeComponent();
     17         }
     18 
     19         /// <summary>
     20         /// Name des neuen Ordners
     21         /// </summary>
     22         public string NewFolderName
     23         {
     24             get { return newFolderTextBox.Text; }
     25             set { newFolderTextBox.Text = value; }
     26         }
     27     }
     28 }