一直都在寻找这个,但是什么也找不到。是否可以为datagridview组合框列设置嵌入字体?我嵌入了字体(工程符号),然后可以将其分配给常规组合框。这是该代码:
private void AllocFont(Font f, Control c, float size)
{
FontStyle fontStyle = FontStyle.Regular;
c.Font = new Font(ff, size, fontStyle);
}
我这样使用它:
private void Inspection_report_builder_Load(object sender, EventArgs e)
{
loadFont();
AllocFont(font, this.comboBox1,10);
}
但是我似乎无法将字体定位到datagridview组合框。该组合框已经创建,因此我不需要以编程方式创建它。我只需要分配字体。有任何想法吗?到目前为止,我可以填充组合框项目(效果很好),这是我的新手,因此,如果您可以提供一个代码示例以使我理解它,那就太好了。这是我用来填充列表的代码,以防万一您想看到它:
private void FillSymbolCombo()
{
ConnectionStringSettings conSettings = ConfigurationManager.ConnectionStrings["shopmanagerConnectionString1"];
MySqlConnection con = new MySqlConnection(conSettings.ToString());
MySqlCommand cmd = new MySqlCommand(@"select symbols from shopmanager.engineering_symbols;", con);
MySqlDataReader myReader;
try
{
con.Open();
myReader = cmd.ExecuteReader();
while (myReader.Read())
{
string sList = myReader.GetString("symbols");
Column5.Items.Add(sList);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
con.Close();
}
答案 0 :(得分:0)
我找到了答案。这是我的代码,以防其他人遇到相同的问题:
private void loadFont()
{
byte[] fontArray = ERP1.Properties.Resources.engineering2;
int dataLenght = ERP1.Properties.Resources.engineering2.Length;
IntPtr ptrData = Marshal.AllocCoTaskMem(dataLenght);
Marshal.Copy(fontArray, 0, ptrData, dataLenght);
uint cFonts = 0;
AddFontMemResourceEx(ptrData, (uint)fontArray.Length, IntPtr.Zero, ref cFonts);
PrivateFontCollection pfc = new PrivateFontCollection();
pfc.AddMemoryFont(ptrData, dataLenght);
Marshal.FreeCoTaskMem(ptrData);
ff = pfc.Families[0];
font = new Font(ff, 9f, FontStyle.Regular);
// This is where I assign the font to the combobox in the datagridview
Column5.DefaultCellStyle.Font = font;
}