How do I pass variables to a buttons event method?

前端 未结 8 1775
伪装坚强ぢ
伪装坚强ぢ 2020-12-14 08:29

I need to be able to pass along two objects to the method being fired when I click a button. How do I do this?

So far I\'ve been looking at creating a changed E

相关标签:
8条回答
  • 2020-12-14 09:12

    Wow, you guys are making this entirely to difficult. No need for any custom classes or method overrides. In this example I just need to pass a tab index number. You can specify whatever you want, so long as your method is expecting that value type.

    button.Click += (sender, EventArgs) => { buttonNext_Click(sender, EventArgs, item.NextTabIndex); };
    
    void buttonNext_Click(object sender, EventArgs e, int index)
        {
           //your code
        }
    
    0 讨论(0)
  • 2020-12-14 09:12

    You can't use your own custom event argument class for a predefined event handler signature. At least, the custom event argument type will never be utilised by any default calls to the handler (which will only ever be of type EventArgs in the case of a button); you could, potentially, call the handler yourself, passing your custom type, however, you would need to have logic in order to cast it back from an EventArgs into that which it had been cast from.

    As a possible solution (depending on your situation), consider a composite type to encapsulate the items you require, as with your event argument type, but keep the required instance as an accessible variable which can be utilised from within the event handler, or, at least, by the method/s which the even handler invokes.

    For example, define your type...

    public class MyType
    {
        public object AccessibleItem { get; set; }
    }
    

    And, in your form class...

    private MyType MyTypeInstance = new MyType();
    
    private void Button_Click(object sender, EventArgs e)
    {
        //here we can set the item, if needs be...
        MyTypeInstance.AccessibleItem = new Anything();
        //or access the item to use as required...
        DoSomeMagicWithMyObject(MyTypeInstance.AccessibleItem);
    }
    

    EDIT:

    Okay, looking at your current code I can only offer you this for now (it doesn't add the items to the forms control container and it uses a variable iterator within Linq (which I think is either frowned upon or just down-right wrong (?), but hey...):

        private void BuildButtonToObjectDictionary()
        {
            int counter = 0;
            var assembly = Assembly.LoadFile(@"c:\components.dll");
    
            var buttonToObjectDictionary = (
                from type in assembly.GetTypes()
                where type.IsClass && !type.IsAbstract
                select new
                {
                    Button = new Button
                    {
                        Name = type.Name,
                        Text = type.Name,
                        Size = new Size(95, 25),
                        Location = new Point(175 + (counter * 100), 10),
                        UseVisualStyleBackColor = true
                    },
                    Item = Activator.CreateInstance(type),
                    Index = counter++
                });
        }
    
    0 讨论(0)
  • 2020-12-14 09:12

    If you open yourForm.Designer.cs file you will see all the code auto generated by VS. Here you can alter the method called when clicking on the button (or add a second method).

    this.yourButton.Location = new System.Drawing.Point(211, 51);
    this.yourButton.Name = "yourButton";
    this.yourButton.Size = new System.Drawing.Size(75, 23);
    this.yourButton.TabIndex = 0;
    this.yourButton.Text = "yourButton";
    this.yourButton.UseVisualStyleBackColor = true;
    this.yourButton.Click += new System.EventHandler(this.yourMethodHere(object1, object2);
    

    Hope this helps.

    0 讨论(0)
  • 2020-12-14 09:16

    You could use the Tag property of the button. You can add a string value to this property from the designer properties window and then pick it up within the handler as so:

        private void MyButton_Click(object sender, EventArgs e)
        {
            string tagValue = ((Button) sender).Tag;
    
            if(tag == "blah")
            {
                // Do something
            }
        }
    
    0 讨论(0)
  • 2020-12-14 09:19

    Cant you just set a property or member variable on the form that hosts the button and access these from the button click event?

    EDIT: custom button class suggestion after feedback comment (not the same suggestion as above)

    class MyButton : Button
    {
        private Type m_TYpe;
    
        private object m_Object;
    
        public object Object
        {
            get { return m_Object; }
            set { m_Object = value; }
        }
    
        public Type TYpe
        {
            get { return m_TYpe; }
            set { m_TYpe = value; }
        }
    }
    
    
    
    
    Button1Click(object sender, EventArgs args)
    {
      MyButton mb = (sender as MyButton);
    
      //then you can access Mb.Type
      //and  Mb.object
    }
    
    0 讨论(0)
  • 2020-12-14 09:23

    Not sure if this exists in Winforms but it does in WPF: There is a "tag" object on all controls which you can attach any object to. You could save the object that you want to pass and then in the event handler read it back out of the sender object.

    private void Button_Click(object sender, RoutedEventArgs e)
    {
        var note = (sender as FrameworkElement).Tag as Note;
        //Do something with note here
    }
    
    0 讨论(0)
提交回复
热议问题