将输入手势文本显示为按钮的工具提示
本文关键字:按钮 工具提示 显示 文本 输入 | 更新日期: 2023-09-27 18:34:15
A 有一个带有Command
的Button
。我想将InputGestureText
显示为包含命令的每个按钮的ToolTip
。
这是我尝试过的:
<n:ImageButton x:Name="NewRecordingButton" Text="Recording"
Command="util:Commands.NewRecording"
ToolTip="{Binding Source=util:Commands.NewRecording, Path=InputGestureText}"
ToolTipService.Placement="Top" ToolTipService.HorizontalOffset="-5"/>
为了简洁起见,我删除了一些元素。
我正在尝试实现与MenuItem
类似的结果.如果用户将鼠标悬停在按钮顶部,我想显示快捷方式。
MenuItem
有一个属性InputGestureText
,如果未设置,它将检查项目的Command
是否为RoutedCommand
,并显示它能找到的第一个KeyGesture
的显示字符串。
您可以通过转换器实现相同的目标(仅适用于RoutedCommand
):
public class RoutedCommandToInputGestureTextConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
RoutedCommand command = value as RoutedCommand;
if (command != null)
{
InputGestureCollection col = command.InputGestures;
if ((col != null) && (col.Count >= 1))
{
// Search for the first key gesture
for (int i = 0; i < col.Count; i++)
{
KeyGesture keyGesture = ((IList)col)[i] as KeyGesture;
if (keyGesture != null)
{
return keyGesture.GetDisplayStringForCulture(CultureInfo.CurrentCulture);
}
}
}
}
return Binding.DoNothing;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return Binding.DoNothing;
}
}
用法:
<Window.Resources>
<ResourceDictionary>
<local:RoutedCommandToInputGestureTextConverter x:Key="RoutedCommandToInputGestureTextConverter" />
</ResourceDictionary>
</Window.Resources>
<Grid>
<Button
Content="Save"
Command="Save"
ToolTip="{Binding Command, RelativeSource={RelativeSource Self}, Converter={StaticResource RoutedCommandToInputGestureTextConverter}}"
ToolTipService.ShowOnDisabled="True" />
</Grid>