private void Build_Button(object sender, RoutedEventArgs e)
    {
        T.BuildStatus = "Building...";            
        BuildSelected(T.ListofTrucks);                  
        T.BuildStatus = "Build Complete";
    }
Currently I have a label binded to T.BuildStatus that I want to display "Building..." while my files are compiled but the label will only update after buildSelected method has finished. How can I get this label to update before continuing with the rest of the event call?
Edit: the object T is implementing INotifyPropertyChanged correctly