Esempio n. 1
0
        public virtual void Export()
        {
            arffSelector       = new ArffSelector(attributes = new ArffAttributes());
            arffSelector.Owner = Application.Current.MainWindow;
            arffSelector.ShowDialog();

            if (!arffSelector.DialogResult.HasValue || arffSelector.DialogResult.Value == false)
            {
                return;
            }

            Export(TwEnvironment.TwWeka);
        }
Esempio n. 2
0
 public ArffSelector(ArffAttributes attributes) : this()
 {
     Attributes = attributes;
 }