XCore.SidebarAdapter.OnIdle C# (CSharp) Method

OnIdle() private method

private OnIdle ( ) : void
return void
		public void OnIdle()
		{
			OutlookBarBand band = this.m_bar.Bands[this.m_bar.GetCurrentBand()];
			if(band== null)
				return;

			ChoiceGroup group = (ChoiceGroup)band.Tag;
			CreateUIForChoiceGroup(group);
			m_bar.Refresh();
		}
	}