Button Schrift zweizeilig

  • Thread starter Thread starter Rainer Borchmann
  • Start date Start date
R

Rainer Borchmann

Hi,
wie im Betreff abgedeutet, möchte ich gerne
auf einem Button zweizeilig etwas ablegen, also so


OK
hier weiter


das weis doch jemand ohne über meine miesen C# Kenntnisse zu schmunzeln ?


Danke

Rainer Borchmann
 
Huhhh,

sorry, i wanted to send it to a german newsgroup. i will try to translate
it.
How can i mad two Lines on a buttons like

OK
here next



please help me a lttle bit without smile on a beginners question on C#
 
Hi,

Rainer Borchmann said:
How can i mad two Lines on a buttons like

OK
here next

The .NET Compact Framework button (System.Windows.Forms.Button) does not
support this directly.

However the native OS button control the .NET CF wraps does support it. This
means you can enable this functionality via a little bit of Platform Invoke
magic.

Peter Foot gave a good write up on this on his blog last year -
http://peterfoot.net/MultilineButton.aspx

Hope this helps,
Christopher Fairbairn
 
Christopher Fairbairn said:
However the native OS button control the .NET CF wraps does support it.
This means you can enable this functionality via a little bit of Platform
Invoke magic.

Peter Foot gave a good write up on this on his blog last year -
http://peterfoot.net/MultilineButton.aspx

Hope this helps,
Christopher Fairbairn


Yes Sire,
it helps, thank you

Bye
Rainer
 
Back
Top