Is acceptable to use async void to event handlers.
The event handler return void.
There is no calling code to await the event handler.
private async void Button_Click(object sender, EventArgs e)
{
try
{
await Task.Delay(1000);
await SomeAsyncMethod1();
await...