System.Reflection.PropertyInfo.SetValue () вызывает обработчик события по умолчанию для кнопки [closed]

StackOverflow https://stackoverflow.com/questions/309706

  •  08-07-2019
  •  | 
  •  

Вопрос

Так что я не совсем уверен, почему это происходит, но я бегу через некоторые DataRow, где у меня есть имя элемента управления, свойство и значение, которые я хочу установить. Все работает нормально, кроме случаев, когда я установил свойство TEXT для кнопки. По какой-то причине событие click называется ...

Вот часть кода, который у меня есть:

string controlName, value, property;
Control currentControl = null;
System.Reflection.PropertyInfo propertyInfo = null;

// run through all rows in the table and set the property
foreach (DataRow r in languageDataset.Tables[_parentForm.Name].Rows)
{
  controlName = r["ControlName"].ToString().ToUpper();
  value = r["Value"].ToString();
  property = r["Property"].ToString();

  // check all controls on the form
  foreach (Control c in formControls)
  {
    // only change it if its the right control
    if (c.Name.ToUpper() == controlName)
    {
      propertyInfo = c.GetType().GetProperty(property);

      if (propertyInfo != null)
        propertyInfo.SetValue(c, value, null);  ******Calls Event Handler?!?!******
      //

      currentControl = c;
      break;
    }
  }
}

Так зачем вообще вызывать обработчик событий при установке значения? Вот то, что я устанавливаю с этим, который вызывает это:

<SnappletChangePassword>  
  <ControlName>buttonAcceptPassword</ControlName>
  <Property>Text</Property>  
  <Value>Accept</Value>
</SnappletChangePassword>
Это было полезно?

Решение

Я не могу воспроизвести это с помощью простой короткой, но полной программы:

using System;
using System.Drawing;
using System.Reflection;
using System.Windows.Forms;

class Test
{
    static void Main()
    {
        Button goButton = new Button { 
            Text = "Go!",
            Location = new Point(5, 5)
        };

        Button targetButton = new Button {
            Text = "Target",
            Location = new Point(5, 50)
        };
        goButton.Click += (sender, args) => SetProperty(targetButton, "Text", "Changed");
        targetButton.Click += (sender, args) => MessageBox.Show("Target clicked!");

        Form f = new Form { Width = 200, Height = 120,
                Controls = { goButton, targetButton }
        };
        Application.Run(f);
    }

    private static void SetProperty(object target, string propertyName, object value)
    {
        PropertyInfo property = target.GetType().GetProperty(propertyName);
        property.SetValue(target, value, null);
    }
}

Можете ли вы придумать подобную законченную программу, которая демонстрирует ?

Другие советы

К сожалению, нет, я тоже не смог воспроизвести это. Я не уверен, что вызвало это, но все, что я сделал, чтобы это исправить, это удалил кнопку и вставил ее туда.

не уверен, что это было, но спасибо за код.

Вы не написали это в .Net2.0?

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top