Custom Button - Rounded, Pill or Square Shape - WinForm C#

Поделиться
HTML-код
  • Опубликовано: 3 ноя 2024

Комментарии • 116

  • @abdullahleghari
    @abdullahleghari Год назад

    Just found this little hidden gem. Thanks RJ

  • @ProgThoughts
    @ProgThoughts Год назад

    Hands down best implementation of a rounded button

  • @tinchoignacio5192
    @tinchoignacio5192 3 года назад +1

    Thanks for your videos man, they go straight to the point and plus that you have the code in the page, i love you bro, please keep uploading videos

  • @Maik8885
    @Maik8885 3 года назад +4

    Great tutorial!
    It is really great as a base to build upon.
    I love to tinker around with custom controls, even tho I do have a bunifu license.

  • @frediopratamad2349
    @frediopratamad2349 2 года назад +1

    How interesting!, I can Implemented it without any error, Thanks RJ Code

  • @saoodhussain3857
    @saoodhussain3857 Год назад

    you the man , you are real life iron man

  • @SamuelSilva-jl7fu
    @SamuelSilva-jl7fu Год назад

    Excellent tutorial, gained another follower.

  • @uineecrack6155
    @uineecrack6155 3 года назад +1

    OH GOD! Thank you so much sir you helped a newbie C# student :D

  • @KvarkLt
    @KvarkLt 3 года назад +1

    SuperB! Thanks a lot for such! That was missing brick for me!

  • @bakiwebdev
    @bakiwebdev 3 года назад +1

    Thank you ma man. keep up the good work

  • @ayooshjad
    @ayooshjad 8 месяцев назад

    Finally I got as i want ,, really thanks a lot🥺

  • @jezreelmoraes5864
    @jezreelmoraes5864 3 года назад +3

    Thank you for this video, you are so good

  • @allefsilva8849
    @allefsilva8849 2 года назад +1

    Muito Obrigado! O melhor tutorial que já vi nesse youtube.

  • @bastibasti7350
    @bastibasti7350 2 года назад +3

    Very well done, well eplained and providing the code is awesome. One question tho, in the beginning of the video you have buttons with an image as well, could you maybe make a video where you show how that can be done?

  • @nstriker
    @nstriker 3 года назад

    Great Tutorials! Your videos helps me a lot! Thanks

  • @raphael2921
    @raphael2921 2 года назад

    With this tutorial , i can remake all controls! Just the property "BackgroundColor" and "TextColor" is the same property than "BackColor" and "ForeColor"

  • @mayurshetty4587
    @mayurshetty4587 3 года назад +3

    This is really helpful. The output is awesome. Kindly help us in creating rounded form as well.. Thank You :)

  • @mieba5599
    @mieba5599 3 года назад

    Awesome tutorial with good explanations!

  • @jmondelus
    @jmondelus 2 года назад

    Awesome work, this helped a lot. Thanks for the great content

  • @yxvwa
    @yxvwa Год назад

    ОТЛИЧНО! Спасибо за видео и идею

  • @ady200003
    @ady200003 3 года назад +1

    Great video !!! Thanks for sharing !!! Can you please include in one of your next video gradient color for a control ?

  • @samuelgirmagirma4019
    @samuelgirmagirma4019 3 года назад +1

    Thanks for The Buttons they are coool hoping that you will make a video about a custom webveiw

  • @FudanshIKun
    @FudanshIKun 3 года назад +5

    May I ask, What topic of c# programming should I learn to understand and be able to make these codes by myself? thank you in forward.

  • @adnanesikilli3718
    @adnanesikilli3718 Год назад

    Great work !!

  • @tim-w
    @tim-w 2 года назад

    Thanks for the great video.

  • @gabrielcouto4356
    @gabrielcouto4356 2 года назад +1

    Amazing, thank very much

  • @hozmannew896
    @hozmannew896 3 года назад +1

    amazing, thank you so much, great efforts

  • @jmloli
    @jmloli Год назад

    Muchísimas gracias, me fué de mucha ayuda.

  • @naksensei
    @naksensei 3 года назад

    Thanks So Much . You are the best.

  • @denisvyazankin3744
    @denisvyazankin3744 3 года назад +1

    Really good content. Amazing useful! Keep going! Good luck, and more subs)

  • @janslanina2209
    @janslanina2209 3 года назад

    It works and it is astounishing ! Love your work !
    EDIT: when you make the button transparent the lower side is not a straight line. :(

  • @sewwandiweerasingha7032
    @sewwandiweerasingha7032 3 года назад

    Thank you so much for this video....it helps me a lot.......🙏

  • @learn9491
    @learn9491 3 года назад +3

    Thx. Pls if possible, next time do it in dark theme of VS. For convinient sake.

  • @corvojow
    @corvojow 3 года назад +1

    Just amazing

  • @wilsoncristiano4247
    @wilsoncristiano4247 2 года назад

    Why not:
    path.StartFigure();
    path.AddArc(rect.X,rect.Y,radius,radius, 180, 90);
    path.AddArc(rect.Width-radius, rect.Y, radius, radius, 270, 90);
    path.AddArc(rect.Width-radius, rect.Y, radius, radius, 0, 90);
    path.AddArc(rect.X, rect.Y, radius, radius, 90, 90);
    path.CloseFigure();
    Why using "rect.Height - radius" instead "rect.Y"? (It gives the same result and it's more understable way!)
    Thank you for your tutorial! :D

  • @thomasjoshua3499
    @thomasjoshua3499 Год назад +2

    Great work. I want to add that, you would want to use Region property in OnHandleCreated() event instead of OnPaint(). Region in OnPaint() will trigger tons of events and use very large amount of system resources. I have a simple panle and only a single rounded button and it cost my pc nearly 30% CPU usage.
    I move the region codes to OnHandleCreated(), and it solve the problem :)

    • @it-traveler
      @it-traveler Год назад

      Thomas, you've saved my day🙂. I've had the similar problem, thank you very much for this solution😊. Could you give me a hint how exactly did you change your code? I read that you moved Region codes to OnHandleCreated but what does your OnPaint method look like now? Thanks in advance for your reply😄

    • @thomasjoshua3499
      @thomasjoshua3499 Год назад +2

      @@it-traveler Since the region is also associated with the control's size, so I ended up assigning the control's Resize event to a new function. So the code might look like this.
      Assign the resizing event in the OnHandleCreated event:
      protected override void OnHandleCreated(EventArgs e)
      {
      base.OnHandleCreated(e);
      this.Parent.BackColorChanged += new EventHandler(Container_BackColorChanged);
      this.Resize += Region_Update;
      }
      And the new function is:
      private void Region_Update(object? sender, EventArgs e)
      {
      //Assign new region here
      RectangleF Rect_OutterSurface = new RectangleF(0, 0, this.Width, this.Height);
      if (Border_Radius > 2)
      {
      using (GraphicsPath Path_OutterSurface = GetFigurePath(Rect_OutterSurface, Border_Radius))
      {
      this.Region = new Region(Path_OutterSurface);
      }
      }
      else
      {
      this.Region = new Region(Rect_OutterSurface);
      }
      }

    • @it-traveler
      @it-traveler Год назад

      @@thomasjoshua3499 thanks a lot😃 BTW, is there a way to avoid rectangular-oval effect when placing a button in Form Designer? It fixes with immediate Region_Update call but maybe something else?

    • @thomasjoshua3499
      @thomasjoshua3499 Год назад

      @@it-traveler Glad to hear my answer is working, but unfortunately about the rectangular-oval effect, I haven't encountered it yet and don't have a clue how to solve it.

  • @dionisheraliyanage3634
    @dionisheraliyanage3634 6 месяцев назад

    Thanks🙏 ❤

  • @محمدصادقرضایی-ط1ز
    @محمدصادقرضایی-ط1ز 3 года назад +1

    in the End Video You did not use Icon In Button ,Does the video have a second part?

  • @maxgdh7618
    @maxgdh7618 Год назад +3

    Hi, thanks for the tutorial
    I have several problems though
    Like, corners being pixelish, or bottom right corner being less "round" than others. Also I noticed that border line tends to not fully cover borders of the button, which results in some ugly one-pixel-thick lines outside the borderline
    Why that could possibly happen and what can I do to fix that?

    • @raymondvanroest372
      @raymondvanroest372 Год назад

      Try setting the back color to transparent rather than giving it an actual color, and only set fore color and border color to an actual color

  • @lshadowSFX
    @lshadowSFX 2 года назад

    Extremely beautifuil! but i have one issue i can't seem to solve! If there is an image as the background of the form, the border looks really bad. How can i fix this? :(

  • @glebi.r6
    @glebi.r6 2 года назад

    Awesome tutorial!
    But howcan I add picture/iocn like in the beginning of the video?

  • @rirsfleex-kilsog8918
    @rirsfleex-kilsog8918 3 года назад +2

    good video, a question do you have a social network or something? is to ask you a question

  • @nguyen4153
    @nguyen4153 Год назад

    Thank you very muchhhh

  • @fatimashehzadi8604
    @fatimashehzadi8604 2 года назад

    hello! Great tutorial sir i want to use icon color change property in this button can you please tell me which line of code i should write

  • @periandavarg7558
    @periandavarg7558 2 года назад

    Thanks, how about for panel type with similar code.
    There is slight change in it (inheriting from panel). Can you please give suggestion

  •  3 года назад +1

    It doesnt show on my toolbox, even after built and rebuilt project. Any tips?

    • @shawnthomas3918
      @shawnthomas3918 2 года назад

      did u get it working?

    •  2 года назад +1

      @@shawnthomas3918 yes, I dont remember exactly what I did, I think that I closed e reopen the Visual Studio

    • @shawnthomas3918
      @shawnthomas3918 2 года назад

      Ahh ok, I had forgotten to import the systems component model as described in the previous video

  • @nurcahyono714
    @nurcahyono714 3 года назад

    great tutorial. but can we add this button to wpf?

  • @mpgsystem
    @mpgsystem 2 года назад

    Parabéns pelo vídeo. Ganhou um inscrito.

  • @jonaszprzybycien6545
    @jonaszprzybycien6545 Год назад

    is there a way to make regular buttons smother without making a new class that extends Button? The way my probram works requires me to use them.

  • @sebastiaofreitas2554
    @sebastiaofreitas2554 Год назад

    Very good. A lot Is there any ListView type control that I can populate with a product table, with each ListView item having 2 lines, one with the product code and description and the second with the quantity sold and the price?

  • @이기석-p1u
    @이기석-p1u 2 месяца назад

    May I use this to use for commercial?

  • @MuhammadAziz-tb8zr
    @MuhammadAziz-tb8zr 3 года назад +1

    Awesome. But I have problem, when I made the button size around (250, 50) and set the image align to middle left, the result was unsatisfying for me. So I added new picture box, set the size mode to "auto size", set the location and finally override OnSizeChanged to change the picturebox location every time button's size changed, but it didn't work, and the picture box just disappeared when the size changed. Do any of you have solution. This is the code
    PictureBox picture = new PictureBox();
    picture.sizemode = PictureBoxSizeMode.AutoSize;
    picture.Location = new Point (this.Location.X + 25, this.Location.Y + this.Height/2 - picture.Height/2);
    this.Controls.Add(picture);
    //And the override
    protected override void OnSizeChanged(EventArgs e)
    {
    base.OnSizeChanged(e);
    picture.Location = new Point (this.Location.X + 25, this.Location.Y + this.Height/2 - picture.Height/2);
    }
    Thanks for listening this long and boring question :)

  • @TheWammbo
    @TheWammbo 3 года назад

    Thanks a lot

  • @orakul_azovstal
    @orakul_azovstal 3 года назад +2

    Coool Спасибо, у вас очень полезные видео. Привет, из Украины)

  • @technomed6720
    @technomed6720 6 месяцев назад

    Thanks for your videos, i notice when i radius the button and put it on the panel the corner of the button become not smooth this happen when i
    put the button on panel

  • @nove1398
    @nove1398 Год назад

    Can i have 3 buttons in the same gridview cell? Like the same column and row had 3 buttons instead of one

  • @serhatkaradag8786
    @serhatkaradag8786 2 года назад +1

    In your Tutorial you didn't show , how create Custom Button with image but your Video shows pictures at start.

  • @GuardaOsservaValuta
    @GuardaOsservaValuta 2 года назад

    Thanks very useful your videos, really thanks.
    Could you make a video for creating a 3D button?

  • @MohammadSadeqq
    @MohammadSadeqq 2 года назад

    Amazing❤

  • @masoudartan2411
    @masoudartan2411 2 года назад

    Hello I knocked like your codes, but my button is not applied at runtime, Only the primary borderRadius is applied What is the problem?

  • @amrelsayedahmed3102
    @amrelsayedahmed3102 2 года назад

    Thanks you are great , can you make Advanced Track Bar

  • @sbasalan
    @sbasalan 9 месяцев назад

    But you did not show in the video how to add icon or image something center of a buttton.

  • @duytrananh2292
    @duytrananh2292 3 года назад

    Well this is nice, but my app is extremely lagging when i moving my form around. Pretty sure it is OnPaint that cause the lag, any way to prevent it?

  • @myprogramme5303
    @myprogramme5303 3 года назад +2

    more and more please

  • @arsaljee6573
    @arsaljee6573 3 года назад

    how to learn front end styling manually for window form in visual studio.please tell me.

  • @arthur2633
    @arthur2633 3 года назад

    How to make a button that can change the color of the selected icon in visual basic? can you show this?

  • @ahmadgamal3200
    @ahmadgamal3200 2 года назад

    Thanks Pro

  • @gizemdenizkoksal8815
    @gizemdenizkoksal8815 3 года назад

    I don't like this man, I'm in love with this man :D

  • @zacharyschwanke7160
    @zacharyschwanke7160 2 года назад

    now how do make the button a flashing color?

  • @serhatkaradag8786
    @serhatkaradag8786 2 года назад

    Please tell me how to add icons to left and right and image ?

  • @ryanrishat1665
    @ryanrishat1665 2 года назад

    Okay Great

  • @ardafirat2124
    @ardafirat2124 Год назад +1

    Abi yazdığın kod çalışmıyor tekrar yaz bence ben bu işlerde baya iyiyim ama hataların var düzelt istersen

  • @1007643
    @1007643 2 года назад

    hi, it's possible to change font with imported font ?

  • @TheAmazeer
    @TheAmazeer 5 месяцев назад

    how do you add thosE icons inside your buttons ?

  • @MrYosi90
    @MrYosi90 3 года назад

    When i use it, the onpaint event fires continuously. what could be causing it?
    in the other hand, the antialias isnt working for me too.

    • @RJCodeAdvanceEN
      @RJCodeAdvanceEN  3 года назад

      Sometimes the project will hang, clean the project, close visual studio, and reopen it.

  • @عبداللهالنجار-ق5ج
    @عبداللهالنجار-ق5ج 3 года назад

    شكرا لك

  • @kashikoi4318
    @kashikoi4318 10 месяцев назад

    Hello Can anyone tell why the category in mine does not show up??

  • @Jordan-cz1zf
    @Jordan-cz1zf 2 года назад

    I'm having trouble making circular buttons. If I set them to be circles in the designer, they revert to being squares with rounded edges when I run the app. The only way I can get them to stay as circles is to make them bigger than necessary in the designer and then reducing the size using code on load. Anyone have a solution?

    • @RJCodeAdvanceEN
      @RJCodeAdvanceEN  2 года назад

      Hi,
      Removes the following condition from the border radius property.
      if (borderRadius > this.Height)
      borderRadius = this.Height;
      In the code published on the website this is corrected.

  • @DangTheVinh-Hanjo
    @DangTheVinh-Hanjo 3 года назад

    Custom calendar pls

  • @yonatanklein
    @yonatanklein Год назад

    is it relevant for .net too?

  • @sydneymascarenhas316
    @sydneymascarenhas316 3 месяца назад

    how to add gradient in category

  • @ahmetmericozcan2310
    @ahmetmericozcan2310 Год назад

    This custom buttons is not good for different resolutions!!! Whyyy, it scales really bad.

  • @Often_Guy
    @Often_Guy Год назад +1

    OMG WHY THE ERIC VOICE!?!

  • @CodeDisease
    @CodeDisease 3 года назад +1

    You should make your own library like guna and make free

    • @RJCodeAdvanceEN
      @RJCodeAdvanceEN  3 года назад +3

      Yes, I've been thinking that. So I will try to do it soon and make it open source. But maybe Bunify or Guna will go bankrupt 😅

  • @ozgurege6613
    @ozgurege6613 9 месяцев назад

    button in textbox ?

  • @mrmakinist
    @mrmakinist 2 года назад

    Pleas radial progress bar

  • @mrmakinist
    @mrmakinist 2 года назад

    Pleasssss c# round trackbar make

  • @vinso6600
    @vinso6600 2 года назад +1

    why would microsoft make this so complicated forcing us to make images with onclick listeners XD

  • @khalidsalim-ey6iv
    @khalidsalim-ey6iv Год назад

    anyone have the code it text form ?

  • @allhzzenmiserable2295
    @allhzzenmiserable2295 2 года назад

    Source code please

  • @mfs6165
    @mfs6165 3 года назад +1

    01:59

  • @hotsoda46
    @hotsoda46 3 года назад +1

    this doesn't work

  • @ardafirat2124
    @ardafirat2124 Год назад +1

    İşine karışıyor gibi olmasın ama yanlışların var

  • @user-kk4th8ev1p
    @user-kk4th8ev1p 3 года назад

    8:56

  • @eletrixalt
    @eletrixalt 2 года назад

    dosent work

  • @Khunryijduy
    @Khunryijduy Год назад

    Popcom 🎉❤🎉 silençe you 😊❤😊😊😊😂😂😂🎉

  • @arthur2633
    @arthur2633 3 года назад

    İcon color