Place an Image on a button WPF

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nelsonbrodyk
    New Member
    • Mar 2008
    • 81

    Place an Image on a button WPF

    Hey All,
    I want to store an image in a resource, and then use this image on a button. But I can't seem to get this working. In WPF should I be using resources to store the icons? Or should this be done differently?

    Edit: I have Added a png to my Resources, and then in XAML tried:

    Code:
                   <comp:CFButton x:Name="btnScreenUp">
                        <Image Source="Resources/UpScreen.png"/>
                    </comp:CFButton>
    But this fails to compile. Atleast is says it does. If I run the application..it works. This is very bizarre. Any thoughts?

    Also, the button is within a frame, and the frame is referenced within a window. In the window, the button shows up right, but when I look at the Frame xaml, it complains of an error and won't render.
  • nelsonbrodyk
    New Member
    • Mar 2008
    • 81

    #2
    Nevermind, closing and reopening VS fixed the issue.

    Comment

    Working...