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

How to use AutoCompleteBox with MVVM Light?

I am trying to figure out how the best way to use AutoCompleteBox with MVVM Light. public ICommand AutoComplete { get { return new RelayCommand(e => { …
chobo2
  • 83,322
  • 195
  • 530
  • 832
0
votes
1 answer

When To Use ICommand Wrapped With RelayCommand and when to use Just ReplayCommand?

I am a bit confused about ICommand and RelayCommand If I do this on an autocomplete control public RelayCommand AutoCompleteCommand { get; private set; } public MyConstructor() { AutoCompleteCommand = new…
chobo2
  • 83,322
  • 195
  • 530
  • 832
0
votes
1 answer

Multiple charts Styling - individual Color

I've got this BubbleChart where I wanted to add an individual Style to show a ToolTip. As I did this, the ToolTip was there and everything was fine until I added a second Series - now the former color setup (each series a different color) was gone…
alexstdev
  • 52
  • 9
0
votes
1 answer

MvvmLight and CustomMessageBox

Is there a proper mvvm way to show CustomMessageBox from the view and get callback from it? This sample is quite nice, but it uses hardcoded MessageBoxButton (only Yes/No/YesNo are avaivable, but i need custom buttons). This contains lots ofuseful…
0
votes
1 answer

How to style a chart to omit the excess chart area surround the chart

I am using Silverlight Toolkit from http://silverlight.codeplex.com/ and am having an issue with the styling. Based off microsoft's documents I see the chart is made up of 4 basic components. ChartAreaStyle ==> Grid LegendStyle ==> Legend (a…
Adrian
  • 3,332
  • 5
  • 34
  • 52
0
votes
1 answer

Silverlight 5 - designing an editor (drag and drop)?

I am currently looking to build a workflow editor in Silverlight that will allow user to drag and drop couple of objects from toolbox and draw them on canvas, connect it with connectors - pretty much like a flow chart designer. I have gone through…
0
votes
0 answers

How to remove an added series in Silverlight ColumnSeries Chart?

I'm new to charting in Silverlight 5. I created a chart in Silverlight with no 3rd party used. I added a series to a chart by code. ColumnSeries series = new ColumnSeries(); PointCollection points = new PointCollection(); …
0
votes
2 answers

Implementing a "fisheye" view with a ListBox

I am new to Windows Phone Programming. In my application, I Have a listbox which lists the phone contacts. Currently it is listed as a regular list with equal size for list items in the UI.I am looking to modify the front end like this : I dont…
0
votes
1 answer

Silverlight Busy Indicator Customr Template

I am trying to use the Silverlight busy indicator control from the tool kit, and applying my own custom template for the UI. The code for the xaml looks like this
0
votes
1 answer

WP7 - LongListSelector, how to hide vertical scroll bar

I need to hide vertical scrollbar in LongListSelector. For this I use: ScrollViewer.VerticalScrollBarVisibility="Hidden" In ListBox it works well but in LongListSelector it doesn't work. This is my LongListSelector code:
Earlgray
  • 647
  • 1
  • 8
  • 31
0
votes
0 answers

How to add a Flick gesture to LongListSelector wp7

I have a LongListSelector and I want to add a Flick gesture to it. I want to mimic iOS swipe to delete action. I only managed to add the Flick event to the whole LongListSelector, but I couldn't get the item the event happend on. UPDATE Here's how I…
AboulEinein
  • 1,101
  • 3
  • 13
  • 27
0
votes
1 answer

LongListSelector doesn't show items

I implement LongListSelector because I want to group items. But this LongListSelector dont show any item when I run it. This is my XML source: first task
0
votes
1 answer

Data-binding to singleton source works only on Windows Phone emulator, but not on device

I've created a singleton class to store information I want to share globally between controls in a Windows Phone 7 app I'm working on. Specifically, I'm using a data-binding to sync the IsExpanded property between various Silverlight Toolkit…
0
votes
1 answer

ListPicker how to add first static item

I have ListPicker with databinding and I need to add first item "none" to binded items. How can I do it?
Earlgray
  • 647
  • 1
  • 8
  • 31
0
votes
1 answer

Windows Phone - ListPicker set SelectedItem to null

I have a page in a Windows Phone 8 app where the user can link items to a group (n:1). The group is selected via the Toolkit ListPicker control. Under the ListPicker is a unlink button for removing the link from item to group.