根据调用表单自定义asp.net用户控件的事件处理

时间:2013-08-30 07:44:59

标签: c# asp.net user-controls

我在两种不同的aspx表单中使用asp.net用户控件。如何根据调用表单自定义用户控件的事件处理?

void ComboboxCountry_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
  {
            if it is form1 that called the User-control => do process 1

            if it is form2 that called the User-control => do process 2
  }

感谢。

1 个答案:

答案 0 :(得分:0)

尽管如果这是一个很好的设计,你试图实现:你可以添加一个属性到你的控件,如

public BehaviourEnum Behaviour { get; set; } // You need to implement the enum

然后你可以

void ComboboxCountry_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
    if (Behaviour == BehaviourEnum.Behave1) // etc.
}

实现控件的页面需要相应地设置Behavior-Property。

编辑:如果你的控件需要与父页面交互,我会在父页面上引入一个界面。然后你可以设计这样的东西:

// The page containing this control needs to implement IMasterpage
public IMasterpage Masterpage { get; set; } 

void ComboboxCountry_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
    // Propagate the behavour to your parent page
    Masterpage.CallwatheverMethodInYourInterface();
}

目标是将依赖于父页面的行为传播到父页面本身。这样你就可以保持控制的苗条和独立。