|
32 | 32 |
|
33 | 33 | <Window.InputBindings>
|
34 | 34 | <KeyBinding Key="Esc" Command="{Binding ViewModel.EscapeCommand}"/>
|
| 35 | + <KeyBinding Key="Return" Command="{Binding ViewModel.InvokeSelectedCommand}"/> |
35 | 36 | <KeyBinding Key="Up" Command="{Binding ViewModel.SelectPrevCommand}"/>
|
36 | 37 | <KeyBinding Key="Down" Command="{Binding ViewModel.SelectNextCommand}"/>
|
37 |
| - <KeyBinding Key="Return" Command="{Binding ViewModel.InvokeSelectedCommand}"/> |
38 | 38 | <KeyBinding Modifiers="Ctrl" Key="Return" Command="{Binding ViewModel.InvokeSelectedCommand}"/>
|
39 | 39 | <KeyBinding Modifiers="Alt" Key="Return" Command="{Binding ViewModel.InvokeSelectedCommand}"/>
|
40 | 40 | <KeyBinding Modifiers="Ctrl+Alt" Key="Return" Command="{Binding ViewModel.InvokeSelectedCommand}"/>
|
41 | 41 | </Window.InputBindings>
|
42 | 42 |
|
43 | 43 | <Window.Resources>
|
44 | 44 | <BooleanToVisibilityConverter x:Key="bool2visibility"/>
|
| 45 | + <ws:BindingProxy x:Key="WindowProxy" |
| 46 | + Data="{Binding}"/> |
45 | 47 | <ws:BindingProxy x:Key="AppConfigProxy"
|
46 | 48 | Data="{Binding AppConfig}"/>
|
47 | 49 | <ws:BindingProxy x:Key="ViewModelProxy"
|
|
111 | 113 | <Style.Triggers>
|
112 | 114 | <MultiDataTrigger>
|
113 | 115 | <MultiDataTrigger.Conditions>
|
114 |
| - <Condition Binding="{Binding ViewModel.ShowQueryResult}" Value="True"/> |
115 | 116 | <Condition Binding="{Binding ViewModel.InvokeCommand.IsRunning}" Value="True"/>
|
116 | 117 | </MultiDataTrigger.Conditions>
|
117 | 118 | <MultiDataTrigger.Setters>
|
|
128 | 129 | </Grid>
|
129 | 130 |
|
130 | 131 | <ws:ConditionalControl Condition="{Binding ViewModel.ShowQueryResult}">
|
131 |
| - <ListView Name="resultBox" Margin="0 5 0 0" MinHeight="0" |
| 132 | + <ListView Name="ResultBox" Margin="0 5 0 0" MinHeight="0" |
132 | 133 | Height="Auto"
|
133 | 134 | MaxHeight="{Binding AppConfig.LauncherResultViewHeight}"
|
134 | 135 | BorderThickness="0"
|
|
139 | 140 | SelectedIndex="{Binding ViewModel.SelectedQueryResultIndex}">
|
140 | 141 | <behaviors:Interaction.Triggers>
|
141 | 142 | <behaviors:EventTrigger EventName="SelectionChanged">
|
142 |
| - <behaviors:InvokeCommandAction Command="{Binding ScrollToSelectedQueryResultCommand}"/> |
| 143 | + <behaviors:InvokeCommandAction Command="{Binding ScrollToSelectedItemCommand}" |
| 144 | + CommandParameter="{x:Reference Name=ResultBox}"/> |
143 | 145 | </behaviors:EventTrigger>
|
144 | 146 | </behaviors:Interaction.Triggers>
|
145 | 147 | <ListView.ItemTemplate>
|
|
193 | 195 | <ContentControl Visibility="{Binding ViewModel.ShowImmediateResults,Converter={StaticResource bool2visibility}}"
|
194 | 196 | Content="{Binding ViewModel.CurrentImmediateResult}">
|
195 | 197 | <ContentControl.Resources>
|
| 198 | + <DataTemplate DataType="{x:Type models_imr:MenuResult}"> |
| 199 | + <ListView Name="MenuResultBox" Margin="0 5 0 0" MinHeight="0" |
| 200 | + Height="Auto" |
| 201 | + MaxHeight="{Binding Source={StaticResource AppConfigProxy},Path=Data.LauncherResultViewHeight}" |
| 202 | + BorderThickness="0" |
| 203 | + ScrollViewer.HorizontalScrollBarVisibility="Disabled" |
| 204 | + ScrollViewer.VerticalScrollBarVisibility="Auto" |
| 205 | + ItemsSource="{Binding Items}" d:ItemsSource="{d:SampleData ItemCount=5}" |
| 206 | + SelectedItem="{Binding SelectedItem,Mode=OneWayToSource}" |
| 207 | + SelectedIndex="{Binding SelectedIndex}"> |
| 208 | + <behaviors:Interaction.Triggers> |
| 209 | + <behaviors:EventTrigger EventName="SelectionChanged"> |
| 210 | + <behaviors:InvokeCommandAction Command="{Binding Source={StaticResource WindowProxy},Path=Data.ScrollToSelectedItemCommand}" |
| 211 | + CommandParameter="{x:Reference Name=MenuResultBox}"/> |
| 212 | + </behaviors:EventTrigger> |
| 213 | + </behaviors:Interaction.Triggers> |
| 214 | + <ListView.ItemTemplate> |
| 215 | + <DataTemplate DataType="models:QueryResultModel"> |
| 216 | + <Border Padding="{DynamicResource QueryResultPaddingThickness}"> |
| 217 | + <Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch"> |
| 218 | + <Grid.ColumnDefinitions> |
| 219 | + <ColumnDefinition Width="Auto"/> |
| 220 | + <ColumnDefinition Width="8"/> |
| 221 | + <ColumnDefinition/> |
| 222 | + </Grid.ColumnDefinitions> |
| 223 | + |
| 224 | + <Border Width="{DynamicResource QueryResultIconSize}" |
| 225 | + Height="{DynamicResource QueryResultIconSize}" |
| 226 | + CornerRadius="{DynamicResource QueryResultIconCornerRadius}"> |
| 227 | + <Border.Background> |
| 228 | + <ImageBrush Stretch="Uniform" |
| 229 | + ImageSource="{Binding Icon}"/> |
| 230 | + </Border.Background> |
| 231 | + </Border> |
| 232 | + |
| 233 | + <Grid Grid.Column="2"> |
| 234 | + <Grid.RowDefinitions> |
| 235 | + <RowDefinition/> |
| 236 | + <RowDefinition/> |
| 237 | + </Grid.RowDefinitions> |
| 238 | + <TextBlock Text="{Binding Title}" |
| 239 | + FontSize="{DynamicResource QueryResultTitleTextSize}" |
| 240 | + Foreground="{DynamicResource TextFillColorPrimaryBrush}"/> |
| 241 | + <TextBlock Grid.Row="1" |
| 242 | + TextTrimming="WordEllipsis" |
| 243 | + Text="{Binding Description}" |
| 244 | + FontSize="{DynamicResource QueryResultDescriptionTextSize}" |
| 245 | + Foreground="{DynamicResource TextFillColorSecondaryBrush}"/> |
| 246 | + </Grid> |
| 247 | + </Grid> |
| 248 | + </Border> |
| 249 | + </DataTemplate> |
| 250 | + </ListView.ItemTemplate> |
| 251 | + <ListView.ItemContainerStyle> |
| 252 | + <Style TargetType="{x:Type ListViewItem}" BasedOn="{StaticResource {x:Type ListViewItem}}"> |
| 253 | + <Setter Property="BorderThickness" Value="0" /> |
| 254 | + <Setter Property="HorizontalContentAlignment" Value="Stretch"/> |
| 255 | + <EventSetter Event="PreviewMouseDown" |
| 256 | + Handler="ResultBoxItemMouseDown"/> |
| 257 | + </Style> |
| 258 | + </ListView.ItemContainerStyle> |
| 259 | + </ListView> |
| 260 | + </DataTemplate> |
196 | 261 | <DataTemplate DataType="{x:Type models_imr:DocumentResult}">
|
197 | 262 | <FlowDocumentScrollViewer Document="{Binding Document}"
|
198 | 263 | MinHeight="{Binding Source={StaticResource AppConfigProxy},Path=Data.LauncherResultViewHeight}">
|
|
0 commit comments