![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
|
Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
br> br> |
| |||||||
![]() |
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Guest | Check a checkbox with the space bar Hi, i have the following XAML and can't seem to figure out how to make the checkbox react to the space bar. <ListView Height="132" Margin="35,0,20,48" Name="m_listViewEvents" VerticalAlignment="Bottom"> <ListView.ItemTemplate> <HierarchicalDataTemplate ItemsSource="{Binding Path=Items}"> <StackPanel Orientation="Horizontal"> <CheckBox IsChecked="{Binding Path=IsSelected}" Margin="1,1,4,1"/> <TextBlock Text="{Binding Path=Text}" Margin="1,1,4,1"/> </StackPanel> </HierarchicalDataTemplate> </ListView.ItemTemplate> </ListView> |
| | #2 (permalink) | ||||||||||||
| Guest | RE: Check a checkbox with the space bar Hi,
reproducible code is here: <ListBox ItemsSource="{x:Static Fonts.SystemFontFamilies}"> <ListBox.ItemTemplate> <DataTemplate> <CheckBox> <TextBlock Text="{Binding Source}"/> </CheckBox> </DataTemplate> </ListBox.ItemTemplate> </ListBox> As it turns out, a space bar does not work because key focus is not on a check box but on ListBoxItem. If I hit [TAB] to move the focus to the check box, then it works. Keyboard operation is essential for my application. Please, please help me. Thank you. | ||||||||||||
| | #3 (permalink) |
| Guest | RE: Check a checkbox with the space bar Hello, Unfortunately, this simple looking scenario is not easy to solve, it's actually pretty complicated because getting the elements defined inside a DataTemplate is changes the behaviour of the ItemsControl (it adds an idea of "checkability" to an ItemsControl which only support "selectability"). For your scenario, consider StackPanels or WrapPanels which would contain CheckBoxes for each of your items. Something like the following: <StackPanel KeyboardNavigation.DirectionalNavigation="Contained"> <CheckBox>One</CheckBox> <CheckBox>Two</CheckBox> <CheckBox>Three</CheckBox> <CheckBox>Four</CheckBox> </StackPanel> |
| |
| |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Welcome Center - can't get rid of it (checkbox is missing!) | William Dowell | Vista General | 0 | 07-23-2008 10:42 AM |
| Checkbox in GridView Column | Jay | Avalon | 1 | 01-08-2008 09:56 AM |
| Checkbox to never see this pop-up again. | Andrew Garttmeyer | Vista account administration | 1 | 07-26-2007 04:56 AM |
| CheckBox groups | Erno | Avalon | 2 | 02-05-2006 12:34 PM |
| No CheckBox.CheckedChanged? | RyanLeeSchneider | Avalon | 6 | 01-31-2006 06:59 AM |