New York Sunset

January 28th, 2008 - No Responses

Birds captured at sunset by Frances in the Brooklyn office.

:30 With Vectorform

November 7th, 2007 - No Responses

Well looky here…

November 1st, 2007 - One Response

Our Silverlight Gallery design has been “borrowed.”

:30 With Vectorform

October 31st, 2007 - No Responses

Vectorform’s Silverlight Blog

October 31st, 2007 - No Responses

Instead of cluttering up the general Vectorform blog with Silverlight content we decided to create it’s own space…

Vectorform’s Silverlight Blog with Code Examples

Combo Box Component

October 19th, 2007 - No Responses

Here is a basic Combo Box component that is easy to implement and customize. It supports automatic scrolling when the number of items exceed the specified height and is fed by an array.

Example, Source

Silverlight portal and demos page

October 12th, 2007 - No Responses

We have set up a Silverlight portal showcasing some examples we’ve been working on as well as a demo page listing all the stuff we’ve thrown together. The source code is included so dive in and have look…

http://www.vectorform.com/silverlight/

http://www.vectorform.com/silverlight/demos.html

The Vectorblog Has Moved!

October 10th, 2007 - No Responses

The Official Vectorform Blog has moved to its new home at vectorform.com/blog

Please update your bookmarks and your rss feeds.

Silverlight scrollbar component: Updated for easy implementation

October 2nd, 2007 - No Responses

Another update to the scrollbar component. Just made some tweaks to make it easier to implement/instantiate. It’s getting closer to more of an OOP style but it’s not all the way there yet. Now all you have to do is call/instantiate the scroller like this:

myScrollPanel=new createScrollablePanel(”sp1″, 10, 10, 100, 160, “V”, the_text, “#FFF”, 9, null, “#0000FF”)

with the following parameters…

unique name, xpos, ypos, width, height, direction, text, [text_color, text_size, text_font, bg_color]

bracketed items are optional, I haven’t converted the horizontal portion yet so only “V” (vertical) is available ;-)

This makes it way easier when you have multiple scrollers on the page. The mouse wheel support also got carried over and works when the mouse is over the particular textfield you want to wheel thru. There are now properties in the constructor to control other options like color, spacing, etc.

Example, Source.

Silverlight scrollbar component: Updated with MouseWheel Support

September 26th, 2007 - No Responses

Here is an updated version of the scrollbar component I released earlier but this new version has Mouse Wheel Support:

Example, Source.

Thanks to Adomas Paltanavičius for the Javascript that handles the Mouse Wheel events!