Tutorials Navigation
[C#] Change DevComponents MetroForm Border & Form Color
Tutorial Name: [C#] Change DevComponents MetroForm Border & Form Color
Category: PC Tutorials
Submitted By: Skittle
Date Added:
Comments: 0
Views: 8,308
Related Forum: PC Building Forum
Share:
This tutorial will simply show you how to change the border and form color of the DevComponents.DotNetBar2 MetroForm. MetroForm is a popular form design as it looks clean and very professional. You will need to find the DevComponents.DotNetBar2.dll reference online for this tutorial.
Follow parts of this tutorial to add the DevComponents dll as a reference.
So you should have it as a reference and this as the top of your code:
using DevComponents.DotNetBar;
As the code to change the colors is quite long even though it is on one line, I like to refer to other specific namespaces:
using DevComponents.DotNetBar.Metro.ColorTables;
using DevComponents.DotNetBar;
You can put this code wherever you want the colors to change, I have mine in the Form_Load procedure:
StyleManager.MetroColorGeneratorParameters = new MetroColorGeneratorParameters(Color.WhiteSmoke, Color.DarkOrange);
The first parameter is the color of your form, and the second is the border color. I have these colors on one of my programs, it looks like this:
[ Register or Signin to view external links. ]
WhiteSmoke background, Orange border.
If you need any help with this, feel free to PM me
Ratings
Comments
Related Tutorials
- 01. Emulating Xbox 360 on PC for Running COD4 With Mods(3,492)
- 02. How to: Matrix Numbers | Batch File(1,903)
- 03. How to Password Protect Files on Windows(857)
- 04. How to play Socom 2/3/ and Combined Assault on PC(6,717)
- 05. Modern Warfare 2 Vac Ban Bypass Tutorial(6,133)
- 06. How to embed an image on TheTechGame(3,098)
- 07. [PC] NIOH 2 OTHER USER SAVE RESIGN(12,981)
- 08. Host bot lobbies! Full Tutorial!(11,243)
- 09. Unban yourself [Plutonium BO2](14,240)
- 10. Fall Guys - How to Change Your Name Color on Fall Guys(8,385)
- 11. Best Crosshair Settings for Valorant(6,525)
- 12. Othercide The Surgeon Boss Guide(2,539)
- 13. Othercide Remembrances Unlock Guide(4,460)
- 14. Othercide Beginners Tips and Tricks(2,708)
- 15. How to Fix Grounded Crashes, Loading Time, Low FPS and Other(4,845)
"[C#] Change DevComponents MetroForm Border & Form Color" :: Login/Create an Account :: 0 comments