Button Schrift zweizeilig

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
 
R

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#
 
C

Christopher Fairbairn

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
 
R

Rainer Borchmann

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top