System.Windows.Forms.ToolStripDropDownItem.OnFontChanged C# (CSharp) Method

OnFontChanged() protected method

protected OnFontChanged ( EventArgs e ) : void
e System.EventArgs
return 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;
		}