Click here to Skip to main content
15,911,711 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have wpf window ok and set the property WindowStyle="SingleBorderWindow".

I want to know how to set a button on left upper corner of border.
Posted
Updated 2-Oct-11 21:28pm
v2
Comments
Simon Bang Terkildsen 3-Oct-11 3:01am    
Comeon thats the second repost. You've posted the same question 3 times in the last hour.
First repost
Original post

Click "Improve question" to add details to your question

1 solution

XML
<Window ...
        WindowStyle="SingleBorderWindow">
    <Button HorizontalAlignment="Left" VerticalAlignment="Top" Content="Click me"/>
</Window>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900