using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Windows.Forms; namespace Tester { public partial class DataCountPanel : UserControl, IExecutePanel { public DataCountPanel() { InitializeComponent(); } public object[] GetObjectArg() { var res = new List(); res.Add(txtResPath.Text); res.Add(string.IsNullOrEmpty(txtFilter.Text) ? null : txtFilter.Text); return res.ToArray(); } } }