I have this bit of code, which should be self explanatory: _item.Distance = Decimal.Round(dDistanceDec, 2);
I\'m a new to WPF (c#) and trying to work with MVVM. Here is the challenge that I have: Suppose I have two listboxs the one containing product names and the other have product parameters. The product
I\'m dynamically populating a silverlight listbox, programmatically, with a template control. the listbox is empty, and when i attempt a listBox.Items.Add(myTemplateControl), it throws the \"Value doe
I\'ve got a list box where the items are check boxes. When the list box is scrolled I am finding that the Checked and Unchecked events are firing for items as they either scroll into view or scroll ou
I have ListBoxItems on a Canvas. I have the ability to drag and scroll the view on the canvas with some Mouse events using a ScrollViewer. These mouse events seem to override the SelectionChanged even
I need to put on my window 3 radio buttons and to make a user to chose only one button. I made a ListBox and set Selection mode = Single but i still can choose all of them , i need to wrap each item i
I have a Pivot item template that includes a listbox <controls:Pivot x:Name=\"MainPivot\" ItemsSource=\"{Binding PivotItemHeaders}\"开发者_运维技巧 Title=\"CLASS TIMETABLE\">
I have a form which I want the user to be able to export to a PDF/Print off, so I included a report viewer and have sent the values over as parameters.
Whats the best way to do the following in MVC3 (razor). User needs to pick one more more items from a List and click on button. The list can run into 40 to 100 items. Thats where my problem is, I am l
I subscribe to the ListBox.DrawItem开发者_如何学运维 event and it draws fine when it has focus but when I navigate away it draws nothing.