hi,
i wish to know how to implement font dialog control ?
using tools->choose toolbox items->font dialog
i select this font dialog and click ok.but it does not display in the tool box.how can i get it.
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Krishna GaradPosted Feb 8, 2011, 5:03 AM
krithika muthukrishnanPosted Feb 8, 2011, 4:21 AM
Krishna GaradPosted Feb 8, 2011, 2:20 AM
krithika muthukrishnanPosted Feb 8, 2011, 2:08 AM
krithika muthukrishnanPosted Feb 8, 2011, 2:07 AM
Krishna GaradPosted Feb 8, 2011, 1:59 AM
right click in toolbox--->Add items---->select control from .net tab it will be added to toolbox.
FroglegPosted Feb 8, 2011, 1:56 AM
public partial class Form1 : Form
{
Font myFont;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
if (fontDialog1.ShowDialog() == DialogResult.OK)
{
myFont = fontDialog1.Font;
}
}
}