System.Windows.Forms.ComboBox.HandleDrawItem C# (CSharp) 메소드

HandleDrawItem() 개인적인 메소드

private HandleDrawItem ( DrawItemEventArgs e ) : void
e DrawItemEventArgs
리턴 void
		internal void HandleDrawItem (DrawItemEventArgs e)
		{
			// Only raise OnDrawItem if we are in an OwnerDraw mode
			switch (DrawMode)
			{
			case DrawMode.OwnerDrawFixed:
			case DrawMode.OwnerDrawVariable:
				OnDrawItem (e);
				break;
			default:
				//	ThemeEngine.Current.DrawComboBoxItem (this, e);
				break;
			}
		}