mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 20:57:22 +02:00
[PowerToys Run] Keyboard shows command tooltips (#12720)
* [PowerToys Run] Keyboard shows command tooltips * Fix spellchecker error * Another try at fixing the spellcheck error
This commit is contained in:
@@ -176,6 +176,7 @@
|
||||
ScrollViewer.VerticalScrollBarVisibility="Auto"
|
||||
SelectionMode="Single"
|
||||
SelectedIndex="{Binding Results.SelectedIndex, Mode=TwoWay}"
|
||||
SelectionChanged="SuggestionsListView_SelectionChanged"
|
||||
ItemContainerStyle="{StaticResource ResultsListViewItemContainerStyle}"
|
||||
AutomationProperties.Name="{x:Static p:Resources.Results}">
|
||||
|
||||
@@ -208,7 +209,7 @@
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ToolTip>
|
||||
<ToolTip Visibility="{Binding Result.ToolTipVisibility}">
|
||||
<ToolTip Visibility="{Binding Result.ToolTipVisibility}" Opened="ToolTip_Opened">
|
||||
<StackPanel>
|
||||
<TextBlock
|
||||
Style="{DynamicResource CollapsableTextblock}"
|
||||
@@ -270,6 +271,7 @@
|
||||
SelectionMode="Single"
|
||||
Margin="0,0,-8,0"
|
||||
SelectedIndex="{Binding ContextMenuSelectedIndex}"
|
||||
SelectionChanged="ContextMenuListView_SelectionChanged"
|
||||
Visibility="{Binding AreContextButtonsActive, Converter={StaticResource BooleanToVisibilityConverter}}"
|
||||
ItemContainerStyle="{StaticResource CommandButtonListViewItemContainerStyle}">
|
||||
<ItemsControl.ItemsPanel>
|
||||
@@ -288,9 +290,10 @@
|
||||
VerticalAlignment="Center"
|
||||
Height="42"
|
||||
Width="42"
|
||||
Name="commandButton"
|
||||
BorderThickness="1" >
|
||||
<ToolTipService.ToolTip>
|
||||
<ToolTip >
|
||||
<ToolTip Opened="ToolTip_Opened">
|
||||
<TextBlock
|
||||
AutomationProperties.Name="{x:Static p:Resources.ContextMenuItemAdditionalInformation}"
|
||||
Text="{Binding Title}"/>
|
||||
|
||||
Reference in New Issue
Block a user