lantool

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

FilterDialog.cs (607B)


      1 using System.Windows.Forms;
      2 
      3 namespace LanTool
      4 {
      5     /// <summary>
      6     /// Standard-Such- und Filter-Dialog
      7     /// </summary>
      8     public partial class FilterDialog : Form
      9     {
     10         /// <summary>
     11         /// Filterdialog erstellen
     12         /// </summary>
     13         public FilterDialog()
     14         {
     15             InitializeComponent();
     16         }
     17 
     18         /// <summary>
     19         /// Filter-Ausdruck (kann ein regulärer Ausdruck sein)
     20         /// </summary>
     21         public string Expression
     22         {
     23             get { return filterTextBox.Text; }
     24             set { filterTextBox.Text = value; }
     25         }
     26     }
     27 }