CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: HanneSThEGreaT

Search: Search took 0.21 seconds.

  1. Replies
    11
    Views
    17,208

    Re: how to create irregular shape button?

    Thanks for posting, Irek. Just keep in mind that this thread is quite old. Reviving old threads usually messes up forum flow. Feel free to help in more current threads.
  2. Replies
    11
    Views
    17,208

    Re: how to create irregular shape button?

    No. As you can see in my previous post ( Post #2 ), all you need is the particular button's Paint event, and do all the drawing code in there. :)
  3. Replies
    11
    Views
    17,208

    Re: how to create irregular shape button?

    Just to give you a hint into the right direction :

    This would make a circle shaped button :

    private void butCCircle_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
    {

    ...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured