FontDialogのデフォルトのフォント名、フォントサイズ、フォントの色をどのように設定できるか教えてください。デフォルトのフォントダイアログをCで変更します。
FontDialog dlg = new FontDialog();
dlg.ShowColor = true;
if (dlg.ShowDialog() != DialogResult.OK) return;
dlg.ShowDialog();メソッドは、 "microsoft san serif"のinstedを選択したフォント名を表示する必要があります
アンダーラインと取り消しのプロパティはどうですか? –
'var myFont = new Font(" Consolas "、10); myFont.Underline = true; dlg.Font = myFont' – abhilash