• passing parameter to an event handler [stackoverflow]


    Q:

    i want to pass my List<string> as parameter using my event

    public event EventHandler _newFileEventHandler;
        List<string> _filesList = new List<string>();
    
    public void startListener(string directoryPath)
    {
        FileSystemWatcher watcher = new FileSystemWatcher(directoryPath);
        _filesList = new List<string>();
        _timer = new System.Timers.Timer(5000);
        watcher.Filter = "*.pcap";
        watcher.Created += watcher_Created;            
        watcher.EnableRaisingEvents = true;
        watcher.IncludeSubdirectories = true;
    }
    
    void watcher_Created(object sender, FileSystemEventArgs e)
    {            
        _timer.Elapsed += new ElapsedEventHandler(myEvent);
        _timer.Enabled = true;
        _filesList.Add(e.FullPath);
        _fileToAdd = e.FullPath;
    }
    
    private void myEvent(object sender, ElapsedEventArgs e)
    {
        _newFileEventHandler(_filesList, EventArgs.Empty);;
    }

    and from my main form i want to get this List:

    void listener_newFileEventHandler(object sender, EventArgs e)
    {
    
    }
    A:

    Make a new EventArgs class such as:

    public class ListEventArgs : EventArgs
        {
            public List<string> Data { get; set; }
            public ListEventArgs(List<string> data)
            {
                Data = data;
            }
        }

    And make your event as this:

    public event EventHandler<ListEventArgs> NewFileAdded;

    Add a firing method:

    protected void OnNewFileAdded(List<string> data)
    {
        var localCopy = NewFileAdded;
        if (localCopy != null)
        {
            localCopy(this, new ListEventArgs(data));
        }
    }

    And when you want to handle this event:

    myObj.NewFileAdded += new EventHandler<ListEventArgs>(myObj_NewFileAdded);

    The handler method would appear like this:

    public void myObj_NewFileAdded(object sender, ListEventArgs e)
    {
           // Do what you want with e.Data (It is a List of string)
    }
  • 相关阅读:
    剑指 Offer II 001. 整数除法
    conda中如何恢复默认源
    conda中如何创建、查看、删除虚拟环境
    conda中如何移除指定的源
    conda 中如何移除默认源
    清华anaconda开源镜像下载站
    集群环境中使用sbatch提交命令测试
    第三章 消息摘要算法MD5SHAMAC
    第四章 dubbo源码解析目录
    第二章 Base64与URLBase64
  • 原文地址:https://www.cnblogs.com/czytcn/p/7887138.html
Copyright © 2020-2023  润新知