c# - can messageDialogs contents be customized -
i using message dialog , want customize contents increasing titles fontsize , changing fontweight. want use multi lines.
i want message dialog these
title(bigger , bolder) 1- nnnnnnnnnnnnnnnnnnnnn 2- kkkkkkkkkkkkkkkkkkkkk 3- lllllllllllllllllllll 4- hhhhhhhhhhhhhhhhhhhhh ok
how can customize body , title?
there's not lot can do, possibly better off creating own. can insert linbreaks via environment.newline
e.g.
messagebox.show("some text" + environment.newline + "some more text");
Comments
Post a Comment