Close() public method

public Close ( ) : void
return void
Esempio n. 1
0
 protected override async Task OnSetObjects(bool isClosing)
 {
     if (!isClosing)
     {
         Debug.Assert(!string.IsNullOrEmpty(UnconfiguredProject.FullPath));
         await _control.SetProjectAsync(UnconfiguredProject, ConfiguredProperties[0]);
     }
     else
     {
         _control.Close();
     }
 }