I'm creating a new Flex component (Flex 3). I'd like it to have a default style. Is there a naming convention or something for my .cs file to make it the default style? Am I missing something?
|
Two ways, generally. One's just by referencing the class name directly -- so for example, if you'd created a new component class
Another way is by setting the UIComponent's
... and defining the style in the CSS file like so (note the dot notation):
Make sense? |
|||||||
|
|
Christian's right about applying the CSS, but if you're planning on using the component in a library across projects, you're gonna want to write a default css file for that library. Here's how you do it:
That's how the Adobe team sets up all their default styles, now you can do it too. Just figured this out- huge |
||||
|
|
In addition to what Christian Nunciato suggested, another option is to define a static initializer for your Flex component's styles. This allows you to set the default styles without requiring the developer to include a CSS file.
|
|||
|
|
|
You may want to override default styles using the
|
|||
|
|
|
A refinement of what joshtynjala suggested:
I've read this in the docs somewhere; the classContruct method gets called automatically. |
|||||||||||
|
|
To create a default style you can also have a property in your class and override the styleChanged() function in UIComponent, eg to only draw a background color across half the width of the component:
You could also create a setter for the customBackgroundColor that called invalidateDisplayList(), so you could also set the customBackgroundColor property programatically as well as through css. |
|||
|
|