예제 #1
0
파일: QueryEditor.cs 프로젝트: gageas/lutea
 public QueryEditor(string directory_path, DynamicPlaylistTreeView parent)
 {
     this.directory = directory_path;
     this.parent    = parent;
     InitializeComponent();
     this.textBox2.Text = Gageas.Lutea.Core.Controller.LatestPlaylistQueryExpanded.Replace("\n", @"\n");
 }
예제 #2
0
파일: QueryEditor.cs 프로젝트: gageas/lutea
 public QueryEditor(PlaylistEntryFile original, DynamicPlaylistTreeView parent)
 {
     if (original == null)
     {
         throw new ArgumentNullException();
     }
     this.q         = original;
     this.directory = original.directory;
     this.parent    = parent;
     InitializeComponent();
     this.textBox1.Text = original.Name;
     this.textBox2.Text = original.sql.Replace("\n", @"\n");
 }
예제 #3
0
 public QueryDirectoryNew(PlaylistEntryDirectory parent, DynamicPlaylistTreeView treeView)
 {
     this.form   = treeView;
     this.parent = parent;
     InitializeComponent();
 }