When you need to pass sender and e to the method (e.g. a page control event)

	MyButton_Tick(this, new RoutedEventArgs());
	Timer1_Tick(this, new object());
You can use null
	MyButton_Tick(SomeControlName, null);
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.

Comments

Your email address will not be published. Required fields are marked *