setup customer background color
-
Does anybody know how I can give my application a custom color that is not available in visual studio (Sort of like how you do it in html). Prateek
-
Does anybody know how I can give my application a custom color that is not available in visual studio (Sort of like how you do it in html). Prateek
If you know RGB code of the color you can use Color.FromARGB() method to get the color you want. If you want to allow user choose color they need, you can use ColorDialog.
Giorgi Dalakishvili #region signature My Articles Asynchronous Registry Notification Using Strongly-typed WMI Classes in .NET [^] My blog #endregion
-
If you know RGB code of the color you can use Color.FromARGB() method to get the color you want. If you want to allow user choose color they need, you can use ColorDialog.
Giorgi Dalakishvili #region signature My Articles Asynchronous Registry Notification Using Strongly-typed WMI Classes in .NET [^] My blog #endregion
It took me a while to get the rgb value, but that worked. Thanks again :) Prateek
-
It took me a while to get the rgb value, but that worked. Thanks again :) Prateek
Glad to help you :)
Giorgi Dalakishvili #region signature My Articles Asynchronous Registry Notification Using Strongly-typed WMI Classes in .NET [^] My blog #endregion