Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windowsでモノラル開発でラベルフォントを設定したいのですが、モノラルの初心者で、プロパティ(ビジュアルスタジオなど)にフォントが表示されません。Monoでフォントの説明を変更する方法は?
コードだけで。
public static Pango.FontDescription Font (string Family, int Size,Pango.Style Sty=Pango.Style.Normal) { Pango.FontDescription F=new Pango.FontDescription(); F.Family=Family; F.Size=Size; F.Style=Sty; return F; }
と
lbl_Inf.ModifyFont(Font("Arial",23));