vote up 2 vote down star

I'm trying to learn and grasp what and how C# does things. I'm historically a Visual Foxpro (VFP) developer, and somewhat spoiled at the years of visual inheritance by creating my own baseline of user controls to be used application wide.

In trying to learn the parallels in C#, I am stuck on something. Say I derive my own label control (control is subclass of label) defined with a font "Arial", 10 point. Then, on any form I add it to, the Designer will automatically pre-fill in some property values which can be seen in the "Designer.cs" portion of the Form class.

this.LabelHdr2.AutoSize = true;
this.LabelHdr2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.LabelHdr2.ForeColor = System.Drawing.Color.Blue;
this.LabelHdr2.Location = new System.Drawing.Point(150, 65);
this.LabelHdr2.Name = "LabelHdr2";
this.LabelHdr2.Size = new System.Drawing.Size(158, 22);
this.LabelHdr2.TabIndex = 5;
this.LabelHdr2.Text = "LabelHdr2";

I want to prevent things like the Font, Color, Size, AutoSize from getting generated every time a control is put on the form. If I later decide to change the font from "Arial" 10, to "Tahoma" 11, I would have to go back to all the forms (and whatever other custom controls) and edit to change over.

In VFP, if I change anything of my baseclass, all forms automatically recognize the changes. I don't have to edit anything (with exception of possible alignments via sizing impacts)... but color, font, and all else are no problems in VFP...

In C#, I have to go back and change each form so it is recognized by the new / updated values of the class...

Is there a reasonable way to avoid this?

flag

3 Answers

vote up 1 vote down check

Here is a simple solution using the ReadOnlyAttribute in the derived class.

class MyLabel : Label
{
    [ReadOnly(true)]
    public override Font Font
    {
        get { return new Font(FontFamily.GenericMonospace, 10); }
        set { /* do nothing */ }
    }
}

The ReadOnlyAttribute will disable property editing in the VS.NET designer.

link|flag
vote up 3 vote down

Instead of using the "ReadOnlyAttribute", try using the "DefaultValueAttribute" instead. If I remember correctly, the designer shouldn't create code to set the property if the current value matches the value stored in the "DefaultValueAttribute".

link|flag
Although the comments from the others work for a Read-Only, there may be occaision to supercede some of the defaults, so I like your comment about the [DefaultValue(somevalue)] option. However, I'm getting an error trying to return a Font. The (somevalue) is expecting a CONSTANT and not a new obj – DRapp Mar 12 at 12:35
Try this: [DefaultValue(typeof(Font), "Microsoft Sans Serif, 10 pt")] (from this url:social.microsoft.com/Forums/en-US/…) – David Mar 12 at 17:15
Nope... that still gets this created in the page... this.defLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); I think I'll stick (for now) the READ ONLY option for now. – DRapp Mar 13 at 0:21
vote up 0 vote down

Try adding the ReadOnly attribute to the properties of your derived classes:

[ReadOnly(true)]
public override Font Font
{
    get{ // Your Implementation Here }
    set{ // Don't really care,do you? }
}

The ReadOnlyAttribute should enforce the ReadOnly behavior at design time.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.