Click here to Skip to main content
15,892,965 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to increase font size of ListItem in Combobox that comes as suggested in dropdown after typing some text in combobox.
Posted
Comments
DamithSL 21-Apr-14 11:40am    
is this windows form application?
Nikhil Bhivgade 22-Apr-14 5:17am    
Yes windows form application
ALLAMI Said 21-Apr-14 11:58am    
see this lin : http://www.codeproject.com/Questions/639233/Change-FOnt-size-of-AutoComplete-combobox-list
Hope you find what you're looking for

 
Share this answer
 
MyList.Font=New Font("Times New Roman",20,FontStyle.Bold,GraphicsUnit.Pixels)


Here emSize is your fontsize where here it is 20


To change only fontsize


MyList.Font=New Font(MyList.Font.Name,20,MyList.Font.Style,MyList.Font.Unit)
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900