How to use font Dialog in our c sharp Application
how to use font dialog box
Today we learn how to call font dialog box in our application first you put richtextbox and button and you right following code in button click event...
FontDialog ss=new FontDialog();
ss.ShowDialog();
richtextbox1.font=ss.font;
No comments: