|
457 | 457 | <ColumnDefinition Width="Auto" /> |
458 | 458 | </Grid.ColumnDefinitions> |
459 | 459 | <StackPanel> |
460 | | - <TextBlock Text="Repeat interval" Style="{StaticResource DetailLabel}" /> |
| 460 | + <TextBlock Text="Movement repeat interval" Style="{StaticResource DetailLabel}" /> |
461 | 461 | <TextBlock Margin="0,4,0,0" |
462 | | - Text="Time between repeated mouse actions." |
| 462 | + Text="Time between repeated pointer movements." |
463 | 463 | Style="{StaticResource MutedText}" /> |
464 | 464 | </StackPanel> |
465 | 465 | <TextBlock Grid.Column="1" |
466 | 466 | Margin="16,0,0,0" |
467 | 467 | VerticalAlignment="Top" |
468 | | - Text="{Binding MouseRepeatInterval}" |
| 468 | + Text="{Binding MouseRepeatMoveInterval}" |
469 | 469 | Style="{StaticResource DetailValue}" /> |
470 | 470 | </Grid> |
471 | 471 |
|
472 | 472 | <UniformGrid Margin="0,14,0,0" Columns="4" |
473 | 473 | IsEnabled="{Binding MouseRepeatEnabled}"> |
474 | 474 | <RadioButton Content="0.1 s" |
475 | | - GroupName="MouseRepeatInterval" |
476 | | - IsChecked="{Binding IsMouseRepeatInterval100, Mode=OneWay}" |
477 | | - Checked="MouseRepeatInterval100_Checked" |
| 475 | + GroupName="MouseRepeatMoveInterval" |
| 476 | + IsChecked="{Binding IsMouseRepeatMoveInterval100, Mode=OneWay}" |
| 477 | + Checked="MouseRepeatMoveInterval100_Checked" |
478 | 478 | Style="{StaticResource SegmentRadio}" /> |
479 | 479 | <RadioButton Content="0.25 s" |
480 | | - GroupName="MouseRepeatInterval" |
481 | | - IsChecked="{Binding IsMouseRepeatInterval250, Mode=OneWay}" |
482 | | - Checked="MouseRepeatInterval250_Checked" |
| 480 | + GroupName="MouseRepeatMoveInterval" |
| 481 | + IsChecked="{Binding IsMouseRepeatMoveInterval250, Mode=OneWay}" |
| 482 | + Checked="MouseRepeatMoveInterval250_Checked" |
483 | 483 | Style="{StaticResource SegmentRadio}" /> |
484 | 484 | <RadioButton Content="0.5 s" |
485 | | - GroupName="MouseRepeatInterval" |
486 | | - IsChecked="{Binding IsMouseRepeatInterval500, Mode=OneWay}" |
487 | | - Checked="MouseRepeatInterval500_Checked" |
| 485 | + GroupName="MouseRepeatMoveInterval" |
| 486 | + IsChecked="{Binding IsMouseRepeatMoveInterval500, Mode=OneWay}" |
| 487 | + Checked="MouseRepeatMoveInterval500_Checked" |
488 | 488 | Style="{StaticResource SegmentRadio}" /> |
489 | 489 | <RadioButton Content="1 s" |
490 | | - GroupName="MouseRepeatInterval" |
491 | | - IsChecked="{Binding IsMouseRepeatInterval1000, Mode=OneWay}" |
492 | | - Checked="MouseRepeatInterval1000_Checked" |
| 490 | + GroupName="MouseRepeatMoveInterval" |
| 491 | + IsChecked="{Binding IsMouseRepeatMoveInterval1000, Mode=OneWay}" |
| 492 | + Checked="MouseRepeatMoveInterval1000_Checked" |
| 493 | + Style="{StaticResource SegmentRadio}" /> |
| 494 | + </UniformGrid> |
| 495 | + |
| 496 | + <Grid Margin="0,14,0,0"> |
| 497 | + <Grid.ColumnDefinitions> |
| 498 | + <ColumnDefinition Width="*" /> |
| 499 | + <ColumnDefinition Width="Auto" /> |
| 500 | + </Grid.ColumnDefinitions> |
| 501 | + <StackPanel> |
| 502 | + <TextBlock Text="Scroll repeat interval" Style="{StaticResource DetailLabel}" /> |
| 503 | + <TextBlock Margin="0,4,0,0" |
| 504 | + Text="Time between repeated scroll actions." |
| 505 | + Style="{StaticResource MutedText}" /> |
| 506 | + </StackPanel> |
| 507 | + <TextBlock Grid.Column="1" |
| 508 | + Margin="16,0,0,0" |
| 509 | + VerticalAlignment="Top" |
| 510 | + Text="{Binding MouseRepeatScrollInterval}" |
| 511 | + Style="{StaticResource DetailValue}" /> |
| 512 | + </Grid> |
| 513 | + |
| 514 | + <UniformGrid Margin="0,14,0,0" Columns="4" |
| 515 | + IsEnabled="{Binding MouseRepeatEnabled}"> |
| 516 | + <RadioButton Content="0.1 s" |
| 517 | + GroupName="MouseRepeatScrollInterval" |
| 518 | + IsChecked="{Binding IsMouseRepeatScrollInterval100, Mode=OneWay}" |
| 519 | + Checked="MouseRepeatScrollInterval100_Checked" |
| 520 | + Style="{StaticResource SegmentRadio}" /> |
| 521 | + <RadioButton Content="0.25 s" |
| 522 | + GroupName="MouseRepeatScrollInterval" |
| 523 | + IsChecked="{Binding IsMouseRepeatScrollInterval250, Mode=OneWay}" |
| 524 | + Checked="MouseRepeatScrollInterval250_Checked" |
| 525 | + Style="{StaticResource SegmentRadio}" /> |
| 526 | + <RadioButton Content="0.5 s" |
| 527 | + GroupName="MouseRepeatScrollInterval" |
| 528 | + IsChecked="{Binding IsMouseRepeatScrollInterval500, Mode=OneWay}" |
| 529 | + Checked="MouseRepeatScrollInterval500_Checked" |
| 530 | + Style="{StaticResource SegmentRadio}" /> |
| 531 | + <RadioButton Content="1 s" |
| 532 | + GroupName="MouseRepeatScrollInterval" |
| 533 | + IsChecked="{Binding IsMouseRepeatScrollInterval1000, Mode=OneWay}" |
| 534 | + Checked="MouseRepeatScrollInterval1000_Checked" |
493 | 535 | Style="{StaticResource SegmentRadio}" /> |
494 | 536 | </UniformGrid> |
495 | 537 | </StackPanel> |
|
0 commit comments