Questions tagged [silverlight-toolkit]

Official Microsoft add-on components for Silverlight on the browser and Windows Phone released via Codeplex.

Download Silverlight Toolkit from http://silverlight.codeplex.com/

669 questions
0
votes
1 answer

Ringtone selector in wp7

I am working on app where I need to create some alarms and reminder. I saw an app in marketplace that can set alarm and reminder. And user can assign ringtones as well. When User press assign ringtone button. A list of ringtones are opened that are…
Arslan Pervaiz
  • 1,575
  • 4
  • 29
  • 62
0
votes
2 answers

How to bind an ObservableCollection to a Listpicker

I am attmepting to bind an ObservableCollection of items to a ListPicker from the Silverlight toolkit for Windows Phone. I have done this before, but in my case now, my ObservableCollection contains items from a custom class. I do not know how to…
Matthew
  • 3,976
  • 15
  • 66
  • 130
0
votes
1 answer

How to get the text value of PhoneTextBox control

I am asking for a user to type in what he or she would like to search for, and then I would like to pass this value to another page where the search will be performed and the results will be given. I am using a PhoneTextBox control from the WP…
Matthew
  • 3,976
  • 15
  • 66
  • 130
0
votes
1 answer

How can I format numbers as exponentials in the axes of a Silverlight chart

I'm using a Silverlight chart to display data that contains very big numbers. Having labels on the axes like "36000000000000" isn't particularly great. How can I format them as exponentials like "3.6 x 10^13"?
alnorth29
  • 3,525
  • 2
  • 34
  • 50
0
votes
1 answer

Group StackedBarSeries and BarSeries on same axis

I want to display 3 series on my Silverlight toolkit horizontal bar chart...2 normal bar series and 1 stacked bar series (consisting of 2 SeriesDefinition). When I add the first 2 normal bar series, they show up next to each other as expected. But…
0
votes
1 answer

ExpanderView, lazy load items on Expanded event

I am interested in using the ExpanderView control with the following behavior: I know if there should be expandable items when populating the header, but I do not know how many and do not want to add the items until the header is tapped to expand…
Dean McCrae
  • 149
  • 1
  • 4
0
votes
1 answer

toolkit assembly giving error message windows phone

I am developing an app that uses DatePicker and LoopSelector at same time. Looking on the tutorials for each of them I have been advised to add assembly references, first one for DatePicker and second one for…
0
votes
2 answers

How to add tap event to multiple HubTiles

I have the following implementation of the HubTile control from the windows phone toolkit, and everything is working correctly except for implementing a tap event from the selected tile. I am unsure of how to link the tap of a specific tile to a Tap…
Matthew
  • 3,976
  • 15
  • 66
  • 130
0
votes
1 answer

SpinnerStyle not working on Silverlight NumericUpDownControl

I have a NumericUpDown control in Silverlight that I want to not have a spinner. the control:
Ethan
  • 628
  • 2
  • 6
  • 20
0
votes
1 answer

Referencing a databound ContextMenu inside a LongListSelector ItemTemplate - Windows Phone

I am writing a Silverlight for Windows Phone 7.5 app. I want to reference the ContextMenu inside my LongListSelector because I want to set .IsOpen to false as soon as the ContextMenu Click event is called. My thought was that this should happen…
0
votes
1 answer

Multi Phrase / Word Autocompletebox for Silverlight

I have been using the autocompletebox from Silverlight Toolkit for Windows Phone. What kind of changes (changes/extended ?) will be needed to enable the autocompletebox to support auto completion for multiple phrases/words ? i.e. support something…
0
votes
1 answer

Displaying a modal dialog (ChildWindow) from a user control

I have a user control that has a Grid as a main container. This control needs to display a modal dialog. However, when I show the dialog (implements ChildWindow) from the control, nothing happens, no errors and no dialog. MyDialog dialog = new…
kateroh
  • 4,382
  • 6
  • 43
  • 62
0
votes
3 answers

Accessing a list picker inside a PanoramaHeader Template

I have a panorama control in which I have create a header template to add a list picker inside it. (Just like the peoples hub to select social accounts)
0
votes
1 answer

Adding Item to listpicker by loop

I want to add items to listpicker control of toolkit. I am doing this way. for (int i = 0; i < cstringl.Length; i++) { listPickerCountrySignup.Items.Add(cstringl[i]); } and here is MY XAML.
Arslan Pervaiz
  • 1,575
  • 4
  • 29
  • 62
0
votes
1 answer

How to set interval on an empty DateTimeAxis in a Silverlight toolkit chart

I have created a chart using the Silverlight 5 toolkit. It has LinearSeries without the ItemsSource specified (it is assigned later in code). The DateTimeAxis does not have a Maximum nor the Minimum specified as I might be plotting different data at…
user1096294
  • 829
  • 2
  • 10
  • 19