Axiom.Samples.SdkTrayManager.ResourceLoadStarted C# (CSharp) Метод

ResourceLoadStarted() публичный Метод

This event is fired when a declared resource is about to be loaded.
public ResourceLoadStarted ( Axiom.Core.Resource resource ) : void
resource Axiom.Core.Resource Weak reference to the resource loaded
Результат void
		public void ResourceLoadStarted( Resource resource )
		{
			LoadBar.Comment = resource.Name;
			mWindow.Update();
			// allow OS events to process (if the platform requires it
			if ( WindowEventMonitor.Instance.MessagePump != null )
			{
				WindowEventMonitor.Instance.MessagePump();
			}
		}