Implement the GisInterface.ProgressorMessage at
|
//TODO: Make this an observable property, and have the main form monitor it |
|
// display a progressing dialog or message on main form if message is not null |
|
public static string ProgressorMessage { get; internal set; } |
Also see the comments for show metadata and show preview in the main form at
|
//ShowMetadataSpinner(); |
|
await DisplayMetadataAsync(node); |
|
//HideMetadataSpinner(); |
|
_previousMetadataNode = node; |
|
_previousStyleSheetIndex = newStyleSheetIndex; |
|
} |
|
break; |
|
case 1: |
|
if (node == null || node != _previousPreviewNode) |
|
{ |
|
//ShowPreviewSpinner(); |
|
await DisplayPreviewAsync(node); |
|
//HidePreviewSpinner(); |
|
_previousPreviewNode = node; |
Implement the
GisInterface.ProgressorMessageatThemeManager/ArcGis10x/GisInterface.cs
Lines 78 to 80 in 2325d8a
Also see the comments for show metadata and show preview in the main form at
ThemeManager/ThemeManager10x/UI/Forms/MainForm.cs
Lines 855 to 868 in 2325d8a