Image Property not available for Button

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • rickbear

    Image Property not available for Button

    Hi group

    I'm developing a Form for target WindowsCE platform in .NET 2.0
    In my form I create a Button without any problems. I can set some
    properties also.
    But in the documentation and many examples I see the button has an
    Image Property which I would like to use. The problem is, IntelliSense
    does not show it and when I force myButton.Image = someImageBitmap ;
    the compiler does not understand the Image Property. I am wondering
    how that can be? Any suggestions?

    - rick -
  • Ignacio Machin ( .NET/ C# MVP )

    #2
    Re: Image Property not available for Button

    On Jul 2, 8:32 am, rickbear <rickbea...@gma il.comwrote:
    Hi group
    >
    I'm developing a Form for target WindowsCE platform in .NET 2.0
    In my form I create a Button without any problems. I can set some
    properties also.
    But in the documentation and many examples I see the button has an
    Image Property which I would like to use. The problem is, IntelliSense
    does not show it and when I force myButton.Image = someImageBitmap ;
    the compiler does not understand the Image Property. I am wondering
    how that can be? Any suggestions?
    >
    - rick -
    Hi,

    It's not implemented in the CF , you have to use a PictureBox

    Take a look at opennetcf.org for more details

    Comment

    Working...