मैं C # में अपना ईवेंट कैसे बना सकता हूं?


जवाबों:


217

यहाँ C # के साथ एक घटना बनाने और उपयोग करने का एक उदाहरण है

using System;

namespace Event_Example
{
    //First we have to define a delegate that acts as a signature for the
    //function that is ultimately called when the event is triggered.
    //You will notice that the second parameter is of MyEventArgs type.
    //This object will contain information about the triggered event.
    public delegate void MyEventHandler(object source, MyEventArgs e);

    //This is a class which describes the event to the class that recieves it.
    //An EventArgs class must always derive from System.EventArgs.
    public class MyEventArgs : EventArgs
    {
        private string EventInfo;
        public MyEventArgs(string Text)
        {
            EventInfo = Text;
        }
        public string GetInfo()
        {
            return EventInfo;
        }
    }

    //This next class is the one which contains an event and triggers it
    //once an action is performed. For example, lets trigger this event
    //once a variable is incremented over a particular value. Notice the
    //event uses the MyEventHandler delegate to create a signature
    //for the called function.
    public class MyClass
    {
        public event MyEventHandler OnMaximum;
        private int i;
        private int Maximum = 10;
        public int MyValue
        {
            get
            {
                return i;
            }
            set
            {
                if(value <= Maximum)
                {
                    i = value;
                }
                else
                {
                    //To make sure we only trigger the event if a handler is present
                    //we check the event to make sure it's not null.
                    if(OnMaximum != null)
                    {
                        OnMaximum(this, new MyEventArgs("You've entered " +
                            value.ToString() +
                            ", but the maximum is " +
                            Maximum.ToString()));
                    }
                }
            }
        }
    }

    class Program
    {
        //This is the actual method that will be assigned to the event handler
        //within the above class. This is where we perform an action once the
        //event has been triggered.
        static void MaximumReached(object source, MyEventArgs e)
        {
            Console.WriteLine(e.GetInfo());
        }

        static void Main(string[] args)
        {
            //Now lets test the event contained in the above class.
            MyClass MyObject = new MyClass();
            MyObject.OnMaximum += new MyEventHandler(MaximumReached);

            for(int x = 0; x <= 15; x++)
            {
                MyObject.MyValue = x;
            }

            Console.ReadLine();
        }
    }
}

4
सौ स्पष्टीकरणों पर जाने के बाद, इससे मुझे समझने में मदद मिली। एसई सही था, कई वर्षों के बाद भी पद प्रासंगिक हैं

1
{मेह!} मैं हमेशा कक्षा के लिए भाग में लिखना भूल जाता हूं event
jp2code

51

मैंने अपने ईवेंट लेख में घटनाओं और प्रतिनिधियों की पूरी चर्चा की है । सबसे सरल प्रकार के ईवेंट के लिए, आप केवल एक सार्वजनिक ईवेंट की घोषणा कर सकते हैं और कंपाइलर ग्राहकों की जानकारी रखने के लिए एक ईवेंट और फ़ील्ड दोनों बनाएगा:

public event EventHandler Foo;

यदि आपको अधिक जटिल सदस्यता / सदस्यता समाप्ति तर्क की आवश्यकता है, तो आप इसे स्पष्ट रूप से कर सकते हैं:

public event EventHandler Foo
{
    add
    {
        // Subscription logic here
    }
    remove
    {
        // Unsubscription logic here
    }
}

1
मुझे यकीन नहीं था कि मेरे कोड से घटना को कैसे कॉल किया जाए, लेकिन यह वास्तव में स्पष्ट है। आप इसे इसे भेजने वाले और EventArgs ऑब्जेक्ट की तरह एक विधि कहते हैं। [अर्थात। if (fooHappened) फू (प्रेषक, EventArgs); ]
रिचर्ड गार्साइड सेप

2
@ रीचर्ड: बिलकुल नहीं; आपको उस मामले को संभालने की आवश्यकता है जहां कोई ग्राहक नहीं हैं, इसलिए प्रतिनिधि संदर्भ शून्य होगा।
जॉन स्कीट

आपके द्वारा लिंक किए गए लेख में थ्रेड सुरक्षित घटनाओं पर C # 4 अपडेट का इंतजार कर रहा है। वास्तव में महान काम, @JonSkeet!
kdbanman

20

आप निम्नलिखित कोड के साथ एक घटना की घोषणा कर सकते हैं:

public event EventHandler MyOwnEvent;

यदि आवश्यक हो तो EventHandler के बजाय एक कस्टम प्रतिनिधि प्रकार का उपयोग किया जा सकता है।

आप .NET में घटनाओं के उपयोग पर विस्तृत जानकारी / ट्यूटोरियल लेख घटनाक्रम ट्यूटोरियल (MSDN) में पा सकते हैं।


4

ऐसा करने के लिए हमें तीन घटकों को जानना होगा

  1. इसके लिए जिम्मेदार जगह firing the Event
  2. इसके लिए जिम्मेदार जगह responding to the Event
  3. इवेंट ही

    ए। प्रतिस्पर्धा

    बी। EventArgs

    सी। EventArgs गणन

अब एक समारोह कहा जाता है जब निकाल दिया है कि घटना बनाने की सुविधा देता है

लेकिन मुझे इस समस्या को हल करने का मेरा आदेश इस तरह है: मैं इसे बनाने से पहले कक्षा का उपयोग कर रहा हूं

  1. इसके लिए जिम्मेदार जगह responding to the Event

    NetLog.OnMessageFired += delegate(object o, MessageEventArgs args) 
    {
            // when the Event Happened I want to Update the UI
            // this is WPF Window (WPF Project)  
            this.Dispatcher.Invoke(() =>
            {
                LabelFileName.Content = args.ItemUri;
                LabelOperation.Content = args.Operation;
                LabelStatus.Content = args.Status;
            });
    };

नेटलॉग एक स्थिर वर्ग है जिसे मैं बाद में समझाऊंगा

अगला कदम है

  1. इसके लिए जिम्मेदार जगह firing the Event

    //this is the sender object, MessageEventArgs Is a class I want to create it  and Operation and Status are Event enums
    NetLog.FireMessage(this, new MessageEventArgs("File1.txt", Operation.Download, Status.Started));
    downloadFile = service.DownloadFile(item.Uri);
    NetLog.FireMessage(this, new MessageEventArgs("File1.txt", Operation.Download, Status.Finished));

तीसरा कदम

  1. इवेंट ही

मैंने नेटलॉग नामक एक वर्ग के भीतर द इवेंट को चेतावनी दी

public sealed class NetLog
{
    public delegate void MessageEventHandler(object sender, MessageEventArgs args);

    public static event MessageEventHandler OnMessageFired;
    public static void FireMessage(Object obj,MessageEventArgs eventArgs)
    {
        if (OnMessageFired != null)
        {
            OnMessageFired(obj, eventArgs);
        }
    }
}

public class MessageEventArgs : EventArgs
{
    public string ItemUri { get; private set; }
    public Operation Operation { get; private set; }
    public Status Status { get; private set; }

    public MessageEventArgs(string itemUri, Operation operation, Status status)
    {
        ItemUri = itemUri;
        Operation = operation;
        Status = status;
    }
}

public enum Operation
{
    Upload,Download
}

public enum Status
{
    Started,Finished
}

इस वर्ग अब शामिल the Event, EventArgsऔर EventArgs Enumsऔर the functionघटना फायरिंग के लिए जिम्मेदार

इस लंबे उत्तर के लिए खेद है


इस उत्तर में वे महत्वपूर्ण अंतर घटना को स्थिर बना रहे हैं, जो घटनाओं को संदर्भित करने की आवश्यकता के बिना घटनाओं को प्राप्त करने की अनुमति देता है जिसने घटना को निकाल दिया। कई स्वतंत्र नियंत्रण से घटनाओं की सदस्यता के लिए महान।
राडारेज़
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.