C# Класс GoogleCloudExtension.Utils.StatusbarHelper

This class contains helpers to manage the status bar for the Visual Studio shell.
Показать файл Открыть проект

Private Properties

Свойство Тип Описание
HideDeployAnimation void
UnFreeze void

Открытые методы

Метод Описание
Freeze ( ) : IDisposable

Freezes the status bar, which prevents updates from other parts of the VS shell.

SetText ( string text ) : void

Change the text in the status bar. If the status bar is frozen no change is made.

ShowDeployAnimation ( ) : IDisposable

Shows an animation to show that a deploy action is being executed. This animation will only show if VS is showing all of the visual effects. The result of the method should stored in a variable in a using statement.

ShowProgressBar ( string label ) : ProgressBarHelper

Shows the progress bar indicator in the Visual Studio shell.

Приватные методы

Метод Описание
HideDeployAnimation ( ) : void
UnFreeze ( ) : void

Описание методов

Freeze() публичный статический Метод

Freezes the status bar, which prevents updates from other parts of the VS shell.
public static Freeze ( ) : IDisposable
Результат IDisposable

SetText() публичный статический Метод

Change the text in the status bar. If the status bar is frozen no change is made.
public static SetText ( string text ) : void
text string The text to display.
Результат void

ShowDeployAnimation() публичный статический Метод

Shows an animation to show that a deploy action is being executed. This animation will only show if VS is showing all of the visual effects. The result of the method should stored in a variable in a using statement.
public static ShowDeployAnimation ( ) : IDisposable
Результат IDisposable

ShowProgressBar() публичный статический Метод

Shows the progress bar indicator in the Visual Studio shell.
public static ShowProgressBar ( string label ) : ProgressBarHelper
label string The label to use for the progress indicator.
Результат ProgressBarHelper