I can read the Font^ of a Button(->Font). But how do I change the Font of a
Button, or at least it's size?
I'm programming using MS VC++ 2005 Express in /clr managed mode.
Thanks!
[==Peter==]
>I can read the Font^ of a Button(->Font). But how do I change the Font of a
>Button, or at least it's size?
Button^ button1;
...
button1->Font = gcnew Font("Arial", 12, GraphicsUnit::Point);
> I'm programming using MS VC++ 2005 Express in /clr managed mode.
>
> Thanks!
>
> [==Peter==]
Peter Oliphant - 06 Oct 2007 17:04 GMT
Thanx, Ben! :)
[==Peter==]
>>I can read the Font^ of a Button(->Font). But how do I change the Font of
>>a Button, or at least it's size?
[quoted text clipped - 9 lines]
>>
>> [==Peter==]