[Mono-bugs] [Bug 470223] TabControl doesn't honor Font setting
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Mon Feb 2 11:47:13 EST 2009
https://bugzilla.novell.com/show_bug.cgi?id=470223
User calberto.cortez at gmail.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=470223#c1
Carlos Alberto Cortez <calberto.cortez at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |calberto.cortez at gmail.com
--- Comment #1 from Carlos Alberto Cortez <calberto.cortez at gmail.com> 2009-02-02 09:47:12 MST ---
I can't reproduce with Mono 2.4 preview 2 or mono from svn. I have the next
code snippet:
using System;
using System.Drawing;
using System.Windows.Forms;
public class Test
{
static void Main ()
{
TabControl tc = new TabControl ();
tc.Font = new Font (tc.Font.FontFamily, 13.0f);
tc.TabPages.Add ("One");
tc.TabPages.Add ("Two");
Form f = new Form ();
f.Controls.Add (tc);
Application.Run (f);
}
}
Would you mind confirming?
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list