Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. How can i create Font property for a composite control similar to the default one?

How can i create Font property for a composite control similar to the default one?

Scheduled Pinned Locked Moved C#
questionhelp
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    Lior S
    wrote on last edited by
    #1

    i need to create a font property to a control that i have created , can someone help me ?

    M 1 Reply Last reply
    0
    • L Lior S

      i need to create a font property to a control that i have created , can someone help me ?

      M Offline
      M Offline
      Martin 0
      wrote on last edited by
      #2

      Hello, I think you have to pick one of these possibilities.

      	public override Font Font
      	{
      		get
      		{ 
      			return base.Font;
      		}
      		set
      		{
      			base.Font = value;
      		}
      	}
      
      
                  private Font \_font;
      	public new Font Font
      	{
      		get
      		{ 
      			return \_font;
      		}
      		set
      		{
      			\_font = value;
      		}
      	}
      
      
      	public new Font Font
      	{
      		get
      		{ 
      			return base.Font;
      		}
      		set
      		{
      			base.Font = value;
      		}
      	}
      
      
                  private Font \_myfont;
      	public Font MyFont
      	{
      		get
      		{ 
      			return myfont;
      		}
      		set
      		{
      			myfont = value;
      		}
      	}
      

      Hope you found youre solution! All the best, Martin

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups