public partial class AxMsRdpHomeForm : Form
{
public AxMsRdpHomeForm(IServiceProvider serviceProvider)
{
InitializeComponent();
this.Events().Deactivate.Subscribe(); // works well
Button button = new Button();
_ = button.Events() // Events() returned NullEvent
}
}