What wrong? and how to fix??I'm trying to learn a new subject in c#-task. and when I run I got error message:
Error CS0407 'Task MainWindow.btn1_ClickAsync(object, RoutedEventArgs)' has the wrong return type 
 public async Task btn1_ClickAsync(object sender, RoutedEventArgs e)
            {
                txtState.Text = "btn1_Click started";
               await LongRunningFunc1();
                txtState.Text = "btn1_Click finished";
            }
        private async Task LongRunningFunc1()
        {
            txt1.Text = "Processing 1 .....";
            btn1.Content = "Wait";
            await Task.Delay(5000);
            txt1.Text = "Hello From Func1";
            btn1.Content = "Click";
        }
wpf designer:
<Grid>
        <TextBlock Name="txtState" Margin="265,10,274,356"/>
        <TextBlock Name="txt1" Height="50" RenderTransformOrigin="0.966,-0.95" Margin="281,68,320,301"/>
        <TextBlock Name="txt2" Height="50" Margin="253,238,274,131" />
        <Button Name="btn1" Background="Red" Margin="281,127,300,208" Click="btn1_ClickAsync"></Button>
        <Button Name="btn2" Background="Aqua" Margin="298,309,311,27"></Button>
    </Grid>
                Button click events are one of the few method signatures where async void is acceptable. Change your method to read
public async void btn1_ClickAsync(object sender, RoutedEventArgs e)
and you should be OK.
Event handlers need to be async void methods:
public async void btn1_ClickAsync(object sender, RoutedEventArgs e)
                        Since it's an event handler it should be async void
public async void btn1_ClickAsync(object sender, RoutedEventArgs e)
Note that async void is a special case and should normally be avoided. See async/await - when to return a Task vs void? for details.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With