Click here to Skip to main content
15,913,055 members
Home / Discussions / C#
   

C#

 
QuestionColor Convertor Pin
Rafone19-May-09 8:34
Rafone19-May-09 8:34 
AnswerRe: Color Convertor Pin
led mike19-May-09 8:50
led mike19-May-09 8:50 
QuestionComboBox AutoComplete with id value Pin
Noctris19-May-09 6:28
Noctris19-May-09 6:28 
AnswerRe: ComboBox AutoComplete with id value Pin
musefan19-May-09 6:42
musefan19-May-09 6:42 
GeneralRe: ComboBox AutoComplete with id value Pin
Noctris19-May-09 7:06
Noctris19-May-09 7:06 
AnswerRe: ComboBox AutoComplete with id value Pin
Noctris19-May-09 9:37
Noctris19-May-09 9:37 
QuestionToolstrip font combobox Pin
malcomhfc19-May-09 5:01
malcomhfc19-May-09 5:01 
AnswerRe: Toolstrip font combobox Pin
0x3c019-May-09 5:13
0x3c019-May-09 5:13 
If you're looking to get the list of all fonts on the system, then use something like this:
System.Drawing.Text.InstalledFontCollection fonts = new System.Drawing.Text.InstalledFontCollection();

foreach(FontFamily family in families)
{
    if(family.IsStyleAvailable(FontStyle.Regular))
    {
        Font font = new Font(family, 12, FontStyle.Regular);
    }
}

That gets every font style and creates a Font object from it. From there it's simple enough to add the Font name to a combo box, and hook the SelectionChanged event to create a font from its name and set the textbox's Font property
GeneralRe: Toolstrip font combobox Pin
malcomhfc19-May-09 5:21
malcomhfc19-May-09 5:21 
GeneralRe: Toolstrip font combobox Pin
0x3c019-May-09 5:40
0x3c019-May-09 5:40 
GeneralRe: Toolstrip font combobox [modified] Pin
malcomhfc19-May-09 5:44
malcomhfc19-May-09 5:44 
GeneralRe: Toolstrip font combobox Pin
musefan19-May-09 6:16
musefan19-May-09 6:16 
GeneralRe: Toolstrip font combobox Pin
musefan19-May-09 6:36
musefan19-May-09 6:36 
GeneralRe: Toolstrip font combobox Pin
malcomhfc19-May-09 7:20
malcomhfc19-May-09 7:20 
GeneralRe: Toolstrip font combobox Pin
0x3c019-May-09 10:18
0x3c019-May-09 10:18 
GeneralRe: Toolstrip font combobox Pin
0x3c019-May-09 6:37
0x3c019-May-09 6:37 
AnswerRe: Toolstrip font combobox Pin
blackhattrick19-May-09 8:34
blackhattrick19-May-09 8:34 
GeneralRe: Toolstrip font combobox Pin
malcomhfc19-May-09 8:40
malcomhfc19-May-09 8:40 
QuestionClass Library / name space Question Pin
gmhanna19-May-09 4:48
gmhanna19-May-09 4:48 
AnswerRe: Class Library / name space Question Pin
OriginalGriff19-May-09 4:50
mveOriginalGriff19-May-09 4:50 
GeneralRe: Class Library / name space Question Pin
musefan19-May-09 4:54
musefan19-May-09 4:54 
GeneralRe: Class Library / name space Question Pin
OriginalGriff19-May-09 4:57
mveOriginalGriff19-May-09 4:57 
GeneralRe: Class Library / name space Question Pin
gmhanna19-May-09 4:56
gmhanna19-May-09 4:56 
AnswerRe: Class Library / name space Question Pin
musefan19-May-09 4:53
musefan19-May-09 4:53 
QuestionHex Strings to Integer Pin
gmhanna19-May-09 4:39
gmhanna19-May-09 4:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.