Exemple #1
0
        public Page2(DatasGathering.SnmpHelper.InterfaceInfos[] ints, DatasGathering.CollectorConfig conf) {
            InitializeComponent();

            lstInts.SelectionChanged += LstInts_SelectionChanged;
            
            this._ints = ints;
            this._conf = conf;
            lstInts.ItemsSource = this._ints;
        }
Exemple #2
0
 private void Page1_WizardFinished(DatasGathering.CollectorConfig conf) {
     this.Config = conf;
     this.Config.GatherInterval = 1000;
     this.DialogResult = true;
     this.Close();
 }