增加按钮提示文本

This commit is contained in:
ww-rm
2025-05-27 16:00:08 +08:00
parent 17257a0ffe
commit d7f7c7116c
3 changed files with 12 additions and 2 deletions

View File

@@ -106,8 +106,14 @@
</Grid.ColumnDefinitions>
<hc:TextBox hc:InfoElement.Placeholder="{StaticResource Str_Filter}"
Text="{Binding FilterString, UpdateSourceTrigger=PropertyChanged}"/>
<Button Grid.Column="1" hc:IconElement.Geometry="{StaticResource Geo_Folder}" Command="{Binding Cmd_ChangeCurrentDirectory}"/>
<Button Grid.Column="2" hc:IconElement.Geometry="{StaticResource Geo_ArrowRotateRight}" Command="{Binding Cmd_RefreshItems}"/>
<Button Grid.Column="1"
hc:IconElement.Geometry="{StaticResource Geo_Folder}"
Command="{Binding Cmd_ChangeCurrentDirectory}"
ToolTip="{DynamicResource Str_ChangeCurrentDirectoryTooltip}"/>
<Button Grid.Column="2"
hc:IconElement.Geometry="{StaticResource Geo_ArrowRotateRight}"
Command="{Binding Cmd_RefreshItems}"
ToolTip="{DynamicResource Str_RefreshItemsTooltip}"/>
</Grid>
<StatusBar DockPanel.Dock="Bottom">