System.Windows.Forms.ToolStripDropDownItem.OnFontChanged C# (CSharp) 메소드

OnFontChanged() 보호된 메소드

protected OnFontChanged ( EventArgs e ) : void
e System.EventArgs
리턴 void
		protected override void OnFontChanged (EventArgs e)
		{
			base.OnFontChanged (e);

			// don't use DropDown directly, since doing that
			// would created the DropDown control
			if (drop_down != null)
				drop_down.Font = Font;
		}