I need to replicate this window’s bottom part to use in my own Form.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What you need to do is override the painting of an existing control or create your own control. Personally, I’d override the painting of a
Panelcontrol, which would then be the panel for the entire bottom section of your window.A Gradient Panel is a common requirement and there is a blog post for it here (code provided below).
Obviously you don’t want to paint a full gradient, but it demonstrates how the painting works on the control.
You can either paint a gradient using a smaller subset of the entire panel or paint using something like
Graphics.DrawPathand draw your straight line at the correct colour.Blog Post Code (to avoid dead links):