Http://www.cnblogs.com/liaohenchen/archive/2008/11/10/silverlight-combobox-fontfamily.html
Recently in Silverlight to achieve a selection of fonts in the ComboBox effect, the results found that there is no ready-made font and value of the comparison table, special finishing a copy, share with you
<combobox x:name= "cbfontfamily" selectionchanged= "cbfontfamily_selectionchanged" >
<comboboxitem content= "Arial" fontfamily= "Arial" ></ComboBoxItem>
<comboboxitem content= "Tahoma" fontfamily= "Tahoma" ></ComboBoxItem>
<comboboxitem content= "Imitation-gb2312" fontfamily= "fangsong_gb2312" ></ComboBoxItem>
<comboboxitem content= "Chinese blackbody" fontfamily= "Simhei" ></ComboBoxItem>
<comboboxitem content= "Chinese Choi Wan" fontfamily= "Stcaiyun" ></ComboBoxItem>
<comboboxitem content= "Chinese Imitation" fontfamily= "Stfangsong" ></ComboBoxItem>
<comboboxitem content= "Chinese amber" fontfamily= "Sthupo" ></ComboBoxItem>
<comboboxitem content= "Chinese script" fontfamily= "Stliti" ></ComboBoxItem>
<comboboxitem content= "XXFarEastFont-Arial" fontfamily= "Stsong" ></ComboBoxItem>
<comboboxitem content= "Chinese fine Black" fontfamily= "Stxihei" ></ComboBoxItem>
<comboboxitem content= "Chinese New Wei" fontfamily= "Stxinwei" ></ComboBoxItem>
<comboboxitem content= "Chinese Xingkai" fontfamily= "Stxingkai" ></ComboBoxItem>
<comboboxitem content= "Chinese-sung" fontfamily= "Stzhongsong" ></ComboBoxItem>
<comboboxitem content= "Italic-gb2312" fontfamily= "kaiti_gb2312" ></ComboBoxItem>
<comboboxitem content= "Official script" fontfamily= "Lisu" ></ComboBoxItem>
<comboboxitem content= "Song Body" fontfamily= "SimSun" ></ComboBoxItem>
<comboboxitem content= "Microsoft Jas Black" fontfamily= "Microsoft Yahei" ></ComboBoxItem>
<comboboxitem content= "New song Body" fontfamily= "Nsimsun" ></ComboBoxItem>
<comboboxitem content= "Young round" fontfamily= "Youyuan" ></ComboBoxItem>
<comboboxitem content= "Arial Unicode MS" fontfamily= "Arial Unicode MS" ></ComboBoxItem>
<comboboxitem content= "Candara" fontfamily= "Candara" ></ComboBoxItem>
<comboboxitem content= "symbol" fontfamily= "symbol" ></ComboBoxItem>
<comboboxitem content= "Verdana" fontfamily= "Verdana" ></ComboBoxItem>
<comboboxitem content= "Latha" fontfamily= "Latha" ></ComboBoxItem>
</ComboBox>
However, the current silverlight2 RC (pre-release) version of this property does not have Selectvalue, do not know how to get the value of the ComboBox selection, perhaps the official version will have it.
Default font and value comparison table in Silverlight "reprint"