Can I change the font color on a portion of a string?

NatsuDragneel

Can I change the color on the portion of the following string represented by m_pwd and m_senior?

string m_pwd = "PWD";
string m_senior = "Senior";

lblMarquee.Text = "Hi" + m_senior + "and" + m_pwd;
Grant Winney

You cannot change the "color" of a string, just like you can't change the color of a number or a list or any other data type that simply stores values.

What you need to do is to modify the visual representation of that data, in this case the Label control. Anything deriving from Control has an available ForeColor and BackColor property.

An easy way to do what you need in WinForms is to group several Labels next to each other in a Panel, change colors on each as desired, and then manipulate the Panel as a single entity as necessary.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Can I change the font color on a portion of a string?

From Java

Can I change the color of Font Awesome's icon color?

From Dev

can I change the font color of the datePicker in iOS7?

From Dev

Can I change background and font color of address bar at Chrome?

From Dev

How can I change the tooltip color or font in Ambiance?

From Dev

Can't change the font color

From Dev

Change color and font of a string using NSAttributed String

From Dev

Change the color of a portion of a gridview templatefield

From Dev

Change the color of a portion of a gridview templatefield

From Dev

How can I change the color of string values I type?

From Dev

Can I change the group portion of the git path name in GitLab?

From Dev

Bootstrap navbar - can't change font color

From Dev

I want to change my navbar font and color

From Dev

How can I use regex to remove a very specific portion of a string:

From Dev

Nemo file manager: How can I change font color of folder names in toolbar button?

From Dev

How can I change font color and specification of additional informations of installation directory chooser

From Dev

Nemo file manager: How can I change font color of folder names in toolbar button?

From Dev

How can I change the font color of link text using inline CSS?

From Dev

How can I assign a color to a font in EPPlus?

From Dev

javafx: How can I make TableCell Edit return double instead of string and the font changes color based on a condition?

From Dev

Change color and size portion of NSString with NSMutableAttributedString

From Dev

How i can change font to UITextView in swift?

From Dev

How can I change font in phpmailer?

From Dev

How can I change the size of the Dash font?

From Dev

How can I change the size of the Dash font?

From Dev

How can I change the system font?

From Dev

change the color and the font of NStextView

From Dev

Change Font and Color in Jade

From Dev

Change font color of UIAlertView

Related Related

  1. 1

    Can I change the font color on a portion of a string?

  2. 2

    Can I change the color of Font Awesome's icon color?

  3. 3

    can I change the font color of the datePicker in iOS7?

  4. 4

    Can I change background and font color of address bar at Chrome?

  5. 5

    How can I change the tooltip color or font in Ambiance?

  6. 6

    Can't change the font color

  7. 7

    Change color and font of a string using NSAttributed String

  8. 8

    Change the color of a portion of a gridview templatefield

  9. 9

    Change the color of a portion of a gridview templatefield

  10. 10

    How can I change the color of string values I type?

  11. 11

    Can I change the group portion of the git path name in GitLab?

  12. 12

    Bootstrap navbar - can't change font color

  13. 13

    I want to change my navbar font and color

  14. 14

    How can I use regex to remove a very specific portion of a string:

  15. 15

    Nemo file manager: How can I change font color of folder names in toolbar button?

  16. 16

    How can I change font color and specification of additional informations of installation directory chooser

  17. 17

    Nemo file manager: How can I change font color of folder names in toolbar button?

  18. 18

    How can I change the font color of link text using inline CSS?

  19. 19

    How can I assign a color to a font in EPPlus?

  20. 20

    javafx: How can I make TableCell Edit return double instead of string and the font changes color based on a condition?

  21. 21

    Change color and size portion of NSString with NSMutableAttributedString

  22. 22

    How i can change font to UITextView in swift?

  23. 23

    How can I change font in phpmailer?

  24. 24

    How can I change the size of the Dash font?

  25. 25

    How can I change the size of the Dash font?

  26. 26

    How can I change the system font?

  27. 27

    change the color and the font of NStextView

  28. 28

    Change Font and Color in Jade

  29. 29

    Change font color of UIAlertView

HotTag

Archive