Hello,
I believe I may have discovered a bug with the mousewheel scroll on RadNumericUpDown controls inside of a RadGridView. Here is some example code:
When I run that code, if I press up or down on a couple of the RadNumericUpDown controls and then use the mousewheel to scroll them, the values of them all change instead of just the last one I clicked on. I would expect only the last one I clicked on to change while scrolling the middle mouse wheel. Thanks in advance for your response!
I believe I may have discovered a bug with the mousewheel scroll on RadNumericUpDown controls inside of a RadGridView. Here is some example code:
| <Window x:Class="RadGridViewBug.Window1" |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| xmlns:t="http://schemas.telerik.com/2008/xaml/presentation" |
| Title="Window1" Height="300" Width="300"> |
| <StackPanel> |
| <t:RadGridView x:Name="grid" Height="300"/> |
| </StackPanel> |
| </Window> |
| public partial class Window1 : Window |
| { |
| public Window1() |
| { |
| InitializeComponent(); |
| TestRow[] rows = new TestRow[2]; |
| rows[0] = new TestRow(); |
| rows[1] = new TestRow(); |
| grid.ItemsSource = rows; |
| } |
| } |
| class TestRow |
| { |
| public RadNumericUpDown updown1 { get; set; } |
| public RadNumericUpDown updown2 { get; set; } |
| public TestRow() |
| { |
| updown1 = new RadNumericUpDown(); |
| updown2 = new RadNumericUpDown(); |
| } |
| } |
When I run that code, if I press up or down on a couple of the RadNumericUpDown controls and then use the mousewheel to scroll them, the values of them all change instead of just the last one I clicked on. I would expect only the last one I clicked on to change while scrolling the middle mouse wheel. Thanks in advance for your response!