Esempio n. 1
0
 /// <summary>
 /// Another internal constructor
 /// </summary>
 /// <param name="label"></param>
 /// <param name="guid"></param>
 protected BaseNodeFactory(string label, Guid guid)
 {
     Label         = label;
     Enabled       = true;
     Properties    = new Dictionary <string, string>();
     Id            = guid;
     Filters       = new DataFrameFilterFactory[0];
     SelectionPath = "/";
 }
Esempio n. 2
0
 /// <summary>
 /// Another internal constructor
 /// </summary>
 /// <param name="label"></param>
 /// <param name="guid"></param>
 protected BaseNodeFactory(string label, Guid guid)
 {
     Label = label;
     Enabled = true;
     Properties = new Dictionary<string, string>();
     Id = guid;
     Filters = new DataFrameFilterFactory[0];
     SelectionPath = "/";
 }
Esempio n. 3
0
 private static void CopyFilters(DataFrameFilterFactory[] filters)
 {
     Clipboard.SetData(NetGraphDocumentControl.NODEFILTER_DATA, filters);
 }