silverlight-3.0

Silverlight 3 : Datagrid - Editing a cell shows a "Property set method not found." message

Hi All, I have a silverlight datagrid control bound to a Dictionary<string, string> with autogenerate columns set to true. In the AutoGeneratingColumn event i change the column Header and IsReadOnly Properties as required(column bound to dictionary value is editable). if ( string.Compare( e.Column.Header.ToString( ).ToLower( ), "key"...

Placing Tabcontrol vertically in silverlight

Hi, I use tab control in silverlight.i want to place it in vertical direction. Please help. Thanks ...

Paths - How do I parse / cast or convert a Path to a StylusPointCollection?

Hello, I'd like to convert a Path to a StylusPointCollection. Can I parse this using XamlReader or something similar? Is there a property of the Path that represents Points (x, y coordinates) that I can cast to a StylusPointCollection? If not, is there a way to render the Path out to an x, y coordinates, so I can manually loop through ...

Silverlight 3 Mobile (WP7) - PathGeometry issue, please help!

Hello, in Silverlight 3 for Mobile, how do I get at a Path's figure points, so I can ultimately get at it's Points (X, Y coordinates)? From what I've been reading, it sounds like the tree structures of the PathGeometry isn't stored in Silverlight 3 for Mobile (I'm doing this for WP7)... Is there another way around this? All I want is th...

silverlight 4.0 runtime hide grid row.?

Any one have idea how to runtime tide grid row.? ...

authenticate silverlight app from third party software

Hi Peers, I need your help. I have a requirement to perform secure log in for my silverlight application(using wcf). I am launching this app from old call center software. From here, I need to pass some information to silverlight app in a secured manner (currently passing as url parameters). I doesn't want to provide log in screen ...

Passing a TextBox value to an IValueConverter used by another databound control in Silverlight 3?

I have a Silverlight 3 control where I am using an ItemsControl to display a list of items. I have implemented a "filter" or "search" textbox that allows the user to enter a search term in a textbox on the control that will limit the items displayed in the ItemsControl to ones that contain the string entered in the textbox. I have been...